1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-14 12:33:31 +00:00
royalnet/templates/login.html
2018-05-15 12:33:24 +02:00

22 lines
No EOL
554 B
HTML

{% extends 'base.html' %}
{% block pagetitle %}
Royal Games
{% endblock %}
{% block body %}
<h1>
Login
</h1>
<form action="{{ url_for('page_loggedin') }}" method="POST">
<label id="label-username">
Username
<input id="input-username" name="username" type="text">
</label>
<label id="label-password">
Password
<input id="input-password" name="password" type="password">
</label>
<input type="submit" value="Login">
</form>
{% endblock %}