Began development of custom user action backend, and basic templating.

This commit is contained in:
Raelon Masters
2020-07-18 02:34:43 -04:00
parent 7221701f7f
commit 7ea017d790
9 changed files with 123 additions and 48 deletions

View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h2>Login</h2>
<form method="post">
{% for field in form %}
<div class="fieldWrapper">
{{ field.errors }}
{{ field.label_tag }} {{ field }}
{% if field.help_text %}
<p class="help">{{ field.help_text|safe }}</p>
{% endif %}
</div>
{% endfor %}
<button type="submit">Login</button>
</form>
</body>
</html>