thewall/thewall/templates/login.html
2026-02-07 16:34:22 +01:00

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 %}