Files
NibasaViewer/viewer/templates/registration/login.html

44 lines
1.4 KiB
HTML
Raw Normal View History

2023-08-23 17:45:39 -04:00
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, height=device-height" />
<title>
NibasaViewer login
</title>
<link href="{% static 'css/styles.css' %}" rel="stylesheet">
</head>
<body class="background">
2023-08-23 21:57:43 -04:00
<div class="fixed-width mauto-top">
<form method="post" action="{% url 'login' %}" class="full-width">
2023-08-23 17:45:39 -04:00
{% csrf_token %}
2023-08-23 21:57:43 -04:00
<table class="full-width">
2023-08-23 17:45:39 -04:00
<tr>
<td>
{{ form.username.label_tag }}
</td>
<td>
{{ form.username }}
</td>
</tr>
<tr>
<td>
{{ form.password.label_tag }}
</td>
<td>
{{ form.password }}
</td>
</tr>
2023-08-23 21:57:43 -04:00
<tr>
<td colspan="2">
<input type="submit" value="login" class="float-right">
<input type="hidden" name="next" value="{{ next }}">
</td>
</tr>
2023-08-23 17:45:39 -04:00
</table>
</form>
</div>
</body>
</html>