yenu/resources/templates/login.html

27 lines
711 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 action="/login" method="POST" class="form-horizontal">
{% csrf-field %}
<div class="form-group">
<label for="title">Passwort</label>
<input type="password" name="password" class="form-control">
</div>
<button type="submit" class="btn btn-success">
Login
<span class="fa fa-arrow-right"></span>
</button>
</form>
</div>
</div>
</div>
{% endblock %}