10 lines
275 B
HTML
10 lines
275 B
HTML
<h1>Login</h1>
|
|
|
|
<form method="POST">
|
|
<input name="username" placeholder="Username" required />
|
|
<input name="password" type="password" placeholder="Password" required />
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
|
|
<a href="{{ url_for('auth.register') }}">Register</a>
|