X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2c8cbdedff9b723bd481e51d3aea771dd93fee7a..94b69cb76f0bdc6fe119a9acc84f73d3afc82cf2:/src/wolnelektury/templates/registration/register.html?ds=sidebyside diff --git a/src/wolnelektury/templates/registration/register.html b/src/wolnelektury/templates/registration/register.html new file mode 100644 index 000000000..33ad8751f --- /dev/null +++ b/src/wolnelektury/templates/registration/register.html @@ -0,0 +1,30 @@ +{% extends "2022/base_simple.html" %} +{% load i18n %} + + +{% block settings %} + {% load title %} + {% trans "Register" as title %} + {% title title %} +{% endblock %} + + +{% block simple-content %} +
+ {% csrf_token %} + {{ form.as_p }} + +

{{ form.data_processing }}

+ + {% if USE_OPENID %} +

{% trans "Sign in using:" %}

+ + + + {% include "socialaccount/snippets/login_extra.html" %} + {% endif %} + +
+{% endblock %}