2018-06-18 22:13:49 -04:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Login</h1>
|
2018-06-21 09:06:23 -04:00
|
|
|
<form method="post" action="{{ url_for('.login') }}">
|
2018-06-16 16:42:31 -04:00
|
|
|
<input type="text" placeholder="Username" name="user" maxlength="20" required/><br />
|
|
|
|
<input type="password" placeholder="Password" name="pass" maxlength="1024" required/><br />
|
|
|
|
<input type="submit" value="Log in" name="submit"/>
|
|
|
|
</form>
|
2018-06-18 22:13:49 -04:00
|
|
|
{% endblock %}
|