1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-16 05:23:30 +00:00
royalnet/templates/login.html

22 lines
474 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">
<label>
Username
<input name="username" type="text">
</label>
<label>
Password
<input name="password" type="password">
</label>
<input type="submit" value="Login">
</form>
{% endblock %}