first commit

This commit is contained in:
root
2024-09-20 04:29:09 +00:00
commit 5383007f49
459 changed files with 88755 additions and 0 deletions

1
templates/openid/base.html Executable file
View File

@@ -0,0 +1 @@
{% extends "socialaccount/base_entrance.html" %}

24
templates/openid/login.html Executable file
View File

@@ -0,0 +1,24 @@
{% extends "openid/base.html" %}
{% load i18n %}
{% load allauth %}
{% block head_title %}
OpenID {% translate "Sign In" %}
{% endblock head_title %}
{% block content %}
{% element h1 %}
OpenID {% trans 'Sign In' %}
{% endelement %}
{% url 'openid_login' as action_url %}
{% element form method="post" action=action_url %}
{% slot body %}
{% csrf_token %}
{% element fields form=form unlabeled=True %}
{% endelement %}
{% endslot %}
{% slot actions %}
{% element button type="submit" %}
{% translate "Sign In" %}
{% endelement %}
{% endslot %}
{% endelement %}
{% endblock content %}