17 lines
590 B
HTML
17 lines
590 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2>Login</h2>
|
|
<hr>
|
|
<form action="/login" method="post" accept-charset="utf-8" enctype="multipart/form-data">
|
|
<label for="name">Username:</label>
|
|
<input type="text" id="username" name="username" value="">
|
|
<br>
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password">
|
|
<br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
<p>By logging in you allow us the use of cookies.</p>
|
|
</div>
|
|
{% endblock %} |