25 lines
704 B
HTML
25 lines
704 B
HTML
{% 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">
|
|
<p>Um die Seite anzusehen oder die Aktion auszuführen wird ein Passwort benötigt.</p>
|
|
|
|
<form method="POST" class="form-horizontal">
|
|
{% csrf-field %}
|
|
|
|
<div class="form-group">
|
|
<label for="title">Passwort</label>
|
|
<input type="password" name="password" class="form-control" autofocus>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-success">
|
|
Login
|
|
<span class="fa fa-arrow-right"></span>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|