1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-14 20:43:34 +00:00
royalnet/templates/login.html

22 lines
554 B
HTML
Raw Normal View History

2018-05-07 12:51:24 +02:00
{% extends 'base.html' %}
{% block pagetitle %}
Royal Games
{% endblock %}
{% block body %}
<h1>
Login
</h1>
<form action="{{ url_for('page_loggedin') }}" method="POST">
2018-05-15 12:33:24 +02:00
<label id="label-username">
2018-05-07 12:51:24 +02:00
Username
2018-05-15 12:33:24 +02:00
<input id="input-username" name="username" type="text">
2018-05-07 12:51:24 +02:00
</label>
2018-05-15 12:33:24 +02:00
<label id="label-password">
2018-05-07 12:51:24 +02:00
Password
2018-05-15 12:33:24 +02:00
<input id="input-password" name="password" type="password">
2018-05-07 12:51:24 +02:00
</label>
<input type="submit" value="Login">
</form>
{% endblock %}