18 lines
380 B
Svelte
18 lines
380 B
Svelte
<script>
|
|
import "$lib/css/form.css"
|
|
</script>
|
|
<form action="?/login" method=POST>
|
|
<h1>Log In</h1>
|
|
<label>
|
|
Benutzername
|
|
<input type="text" name="username" required>
|
|
</label>
|
|
<label>
|
|
Passwort
|
|
<input name="password" type="password" required>
|
|
</label>
|
|
|
|
<button type="submit">Log In</button>
|
|
<p>Noch keinen Account? <a href=/register>Hier registrieren</a>.</p>
|
|
</form>
|