12 lines
314 B
HTML
12 lines
314 B
HTML
<h1>Login</h1>
|
|
<form method="post">
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" id="username" />
|
|
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" />
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
<p><a href="/register">Register</a></p>
|