what2watch/templates/login_page.html

20 lines
551 B
HTML
Raw Normal View History

2023-05-29 00:55:16 +00:00
{% extends "base.html" %}
2023-07-09 04:26:28 +00:00
{% block title %}Login to What 2 Watch, Bish{% endblock %}
2023-05-29 00:55:16 +00:00
2023-06-13 21:33:31 +00:00
{% block header %}{% endblock %}
2023-05-29 00:55:16 +00:00
{% block content %}
<p>
<form action="/login" enctype="application/x-www-form-urlencoded" method="post">
<label for="username">Username</label>
<input type="text" name="username" id="username" minlength="1" maxlength="20" required></br>
<label for="password">Password</label>
<input type="password" name="password" id="password" required></br>
2023-12-27 00:04:32 +00:00
<input type="submit" value="Login">
2023-05-29 00:55:16 +00:00
</form>
</p>
{% endblock %}