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

22 lines
No EOL
607 B
HTML

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