1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-16 21:43:29 +00:00
royalnet/templates/login.html
2018-05-07 12:51:24 +02:00

22 lines
No EOL
474 B
HTML

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