eva/eintritt/templates/account/login.html

38 lines
1.1 KiB
HTML
Raw Normal View History

2021-05-17 08:34:21 +00:00
{% load i18n %}
{% load static %}
2025-04-14 08:34:30 +00:00
<!-- Load core JavaScript files needed for admin functionality -->
2021-05-17 08:34:21 +00:00
<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>
2025-04-14 08:34:30 +00:00
<!-- Render any JavaScript or CSS required by form widgets -->
2021-05-17 08:34:21 +00:00
{{ form.media }}
2025-04-14 08:34:30 +00:00
<!-- Load admin base and widgets stylesheets -->
2021-05-17 08:34:21 +00:00
<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>
2025-04-14 08:34:30 +00:00
<!-- Display logo image -->
2021-05-17 08:34:21 +00:00
<img src="{% static 'evapp/logo.png' %}" />
2025-04-14 08:34:30 +00:00
<!-- Main heading for the page -->
2021-05-17 08:34:21 +00:00
<h1>
E (V A) - Eintritt, (Veränderung, Austritt)<p>
</h1>
2025-04-14 08:34:30 +00:00
<!-- Instruction text for users to log in via cloud (social login) -->
2021-05-17 10:41:46 +00:00
Bitte via Wolke einloggen:
2025-04-14 08:34:30 +00:00
<!-- Include the social login providers list -->
2021-05-17 08:34:21 +00:00
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
</center>
{% endblock %}