11 lines
408 B
HTML
11 lines
408 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
<form method="post" action="{{ url_for('.login') }}">
|
|
<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>
|
|
{% endblock %}
|