forked from s3lph/matemat
9 lines
301 B
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%}
|