add templates for anonymous user dashboard and login
This commit is contained in:
parent
8a29e4001c
commit
1deed46d34
2 changed files with 26 additions and 0 deletions
12
gnuviechadmin/templates/registration/login.html
Normal file
12
gnuviechadmin/templates/registration/login.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
{% extends "base.html" %}
|
||||
{% load i18n crispy_forms_tags %}
|
||||
{% block title %}{{ block.super }} - {% trans "Sign in" %}{% endblock title %}
|
||||
{% block page_title %}{% trans "Sign In" %}{% endblock %}
|
||||
{% block content %}
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="next" value="{{ next }}" />
|
||||
{{ form|crispy }}
|
||||
<input type="submit" name="submit" value="{% trans 'Sign in' %}" class="btn btn-primary" />
|
||||
</form>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue