carom-server/templates/registration/login.html

28 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2019-02-04 07:56:49 +01:00
{% extends '_base.html' %}
{% load static from staticfiles %}
2018-02-11 08:12:08 +01:00
{% load crispy_forms_tags %}
2019-02-04 07:56:49 +01:00
{% load form_tags %}
{% block title %}Anmelden{% endblock %}
2018-02-10 13:44:14 +01:00
{% block content %}
2019-02-04 07:56:49 +01:00
<div class="row justify-content-center" style="margin-top: 80px;">
2018-02-10 13:44:14 +01:00
<div class="col-lg-4 col-md-6 col-sm-8">
2019-02-04 07:56:49 +01:00
<form method="post" novalidate>
{% csrf_token %}
<div class="card">
<div class="card-header text-center">
<h3>{% settings_value "PRODUCT_INFO" %}</h3>
</div>
<div class="card-body">
<h3 class="card-title">Login</h3>
2018-02-10 13:44:14 +01:00
<input type="hidden" name="next" value="{{ next }}">
2018-02-11 08:12:08 +01:00
{{ form|crispy }}
2019-02-04 07:56:49 +01:00
</div>
<div class="card-footer">
2018-02-10 13:44:14 +01:00
<button type="submit" class="btn btn-primary btn-block">Log in</button>
2019-02-04 07:56:49 +01:00
</div>
2018-02-10 13:44:14 +01:00
</div>
2019-02-04 07:56:49 +01:00
</form>
2018-02-10 13:44:14 +01:00
</div>
</div>
{% endblock %}