1
0
Fork 0
forked from s3lph/matemat
matemat/templates/login.html

9 lines
301 B
HTML

{% extends "base.html" %}
{% block main %}
<form action="/login" method="post">
Username: <input type="text" name="username"/><br/>
Password: <input type="password" name="password" /><br/>
<input type="submit" value="Login"/>
</form>
{% endblock%}