18 lines
553 B
HTML
18 lines
553 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block head %}
|
||
|
<title>Login - {{ settings.SITENAME }}</title>
|
||
|
{% endblock %}
|
||
|
{% block content %}
|
||
|
<div class="login">
|
||
|
<form method="POST">
|
||
|
{% csrf_token %}
|
||
|
<input name="username" type="text" placeholder="your username" required></input>
|
||
|
<input name="password" type="password" placeholder="your password" required></input>
|
||
|
<div class="buttons login">
|
||
|
<button id="login">Login</button>
|
||
|
</div>
|
||
|
<div class="error">{{ error }}</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock %}
|