mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 12:04:20 +00:00
18 lines
No EOL
366 B
HTML
18 lines
No EOL
366 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block pagetitle %}
|
|
Royal Games
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>
|
|
Set a password
|
|
</h1>
|
|
<form action="{{ url_for('page_password') }}" method="POST">
|
|
<label>
|
|
New password
|
|
<input name="new" type="password">
|
|
</label>
|
|
<input type="submit">
|
|
</form>
|
|
{% endblock %} |