Implement server-side authentication and update login UI texts

This commit is contained in:
2025-01-24 21:54:05 +01:00
parent 1edcefbd64
commit da2f568acf
4 changed files with 44 additions and 13 deletions

View File

@@ -14,14 +14,14 @@
</head>
<body>
<div id="loginContainer" class="container">
<h1 class="center-align">Login</h1>
<h1 class="center-align">Logga in</h1>
<form id="loginForm">
<div class="input-field">
<label for="username">Username:</label>
<label for="username">Användarnamn:</label>
<input type="text" id="username" required>
</div>
<div class="input-field">
<label for="password">Password:</label>
<label for="password">Lösenord:</label>
<input type="password" id="password" required>
</div>
<button class="btn waves-effect waves-light" type="submit">Login</button>
@@ -48,7 +48,7 @@
</div>
<div class="input-field">
<label for="tags">Tags (separated by commas):</label>
<label for="tags">Taggar (separera med komma):</label>
<input type="text" id="tags" class="autocomplete">
</div>