new login page template

This commit is contained in:
Benni Bärmann 2021-05-17 10:34:21 +02:00
parent 3c6815fa6e
commit f56c61fee9
3 changed files with 28 additions and 1 deletions

1
TODO
View File

@ -0,0 +1 @@
* remove dot before "Nextcloud" at login page.

View File

@ -50,7 +50,6 @@ INSTALLED_APPS = [
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.nextcloud',
'allauth.socialaccount.providers.google',
'multiselectfield',
'formtools',
]

View File

@ -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 %}