new login page template
This commit is contained in:
parent
3c6815fa6e
commit
f56c61fee9
|
@ -50,7 +50,6 @@ INSTALLED_APPS = [
|
||||||
'allauth.account',
|
'allauth.account',
|
||||||
'allauth.socialaccount',
|
'allauth.socialaccount',
|
||||||
'allauth.socialaccount.providers.nextcloud',
|
'allauth.socialaccount.providers.nextcloud',
|
||||||
'allauth.socialaccount.providers.google',
|
|
||||||
'multiselectfield',
|
'multiselectfield',
|
||||||
'formtools',
|
'formtools',
|
||||||
]
|
]
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
|
<script type="text/javascript" src="{% static 'admin/js/core.js' %}"></script>
|
||||||
|
<script type="text/javascript" src="{% static 'admin/js/vendor/jquery/jquery.js' %}"></script>
|
||||||
|
<script type="text/javascript" src="{% static 'admin/js/jquery.init.js' %}"></script>
|
||||||
|
|
||||||
|
{{ form.media }}
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/base.css' %}" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/widgets.css' %}" />
|
||||||
|
|
||||||
|
{% load account socialaccount %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<center>
|
||||||
|
<img src="{% static 'evapp/logo.png' %}" />
|
||||||
|
<h1>
|
||||||
|
E (V A) - Eintritt, (Veränderung, Austritt)<p>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
Bitte via Wolke einloggen
|
||||||
|
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
|
||||||
|
|
||||||
|
</center>
|
||||||
|
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue