2017-03-29 14:39:03 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container mt-5">
|
|
|
|
<div class="row justify-content-md-center">
|
|
|
|
<div class="col-lg-5 col-sm-12">
|
2018-05-04 13:47:12 +02:00
|
|
|
<img src="/img/logo_big.png">
|
|
|
|
|
2017-03-29 14:39:03 +02:00
|
|
|
<p>Um die Seite anzusehen oder die Aktion auszuführen wird ein Passwort benötigt.</p>
|
|
|
|
|
2017-04-25 22:53:34 +02:00
|
|
|
<form method="POST" class="form-horizontal">
|
2017-03-29 14:39:03 +02:00
|
|
|
{% csrf-field %}
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="title">Passwort</label>
|
2017-05-03 23:25:06 +02:00
|
|
|
<input type="password" name="password" class="form-control" autofocus>
|
2017-03-29 14:39:03 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
|
Login
|
|
|
|
<span class="fa fa-arrow-right"></span>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|