2020-07-29 00:15:12 +02:00
|
|
|
{% extends 'global.html'%}
|
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
# {% block title %}Login{% endblock %}
|
|
|
|
|
|
|
|
{% block maincontent %}
|
|
|
|
|
2020-08-10 20:10:22 +02:00
|
|
|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
|
|
|
|
<fieldset class="LP-Form__Fieldset">
|
|
|
|
<legend class="LP-Form__Legend">Login</legend>
|
|
|
|
{% csrf_token %}
|
|
|
|
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.username %}
|
|
|
|
</div>
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.password %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-08-12 18:32:11 +02:00
|
|
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
|
|
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
|
|
|
<button class="LP-Button">Login</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-10 20:10:22 +02:00
|
|
|
</fieldset>
|
|
|
|
|
2020-07-29 00:15:12 +02:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock maincontent %}
|