1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/password.html

18 lines
No EOL
401 B
HTML

{% extends 'base.html' %}
{% block pagetitle %}
Crea una password
{% endblock %}
{% block body %}
<h1>
Crea una password
</h1>
<form action="{{ url_for('page_password') }}" method="POST">
<label>
Nuova password
<input name="new" type="password">
</label>
<input type="submit" value="Cambia password">
</form>
{% endblock %}