9 lines
305 B
HTML
9 lines
305 B
HTML
<h2>Login</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username">
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password">
|
|
<button type="submit">Login</button>
|
|
</form> |