28 lines
861 B
HTML
28 lines
861 B
HTML
{% extends 'global.html'%}
|
|
{% load static %}
|
|
|
|
# {% block title %}Login{% endblock %}
|
|
|
|
{% block maincontent %}
|
|
|
|
<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>
|
|
|
|
<div class="LP-Form__Composition">
|
|
<input type="submit" class="LP-Button" value="Login"/>
|
|
</div>
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
{% endblock maincontent %} |