11 lines
266 B
HTML
11 lines
266 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
<form method="post" action="{{ url('login:index') }}">
|
|
{{ csrf_input }}
|
|
{{ form.as_p() }}
|
|
<input type="submit" value="Log in" name="submit"/>
|
|
</form>
|
|
{% endblock %}
|