This commit is contained in:
Rich
2021-07-03 22:13:13 +01:00
parent 3f9cba58e9
commit 550ad6a9f7
3 changed files with 32 additions and 1 deletions

14
app/templates/wpa.html Normal file
View File

@@ -0,0 +1,14 @@
{% block content %}
<h1>Password</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.password.label }}<br>
{{ form.password(size=32) }}<br>
{% for error in form.password.errors %}
<span style="color: red;">[{{ error }}]</span>
{% endfor %}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endblock %}