1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
royalnet/templates/main.html

22 lines
607 B
HTML
Raw Normal View History

2018-06-01 11:36:30 +00:00
{% 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 %}