mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-05 23:18:53 -05:00
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load socialaccount %}
|
|
{% load i18n %}
|
|
{% load allauth %}
|
|
{% block head_title %}
|
|
{% trans "Signup" %}
|
|
{% endblock head_title %}
|
|
{% block content %}
|
|
|
|
<div class="user-action-form-wrap">
|
|
<div class="user-action-form-inner">
|
|
|
|
{% element h1 %}
|
|
{% trans "Sign Up" %}
|
|
{% endelement %}
|
|
{% element p %}
|
|
{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to
|
|
{{site_name}}. As a final step, please complete the following form:{% endblocktrans %}
|
|
{% endelement %}
|
|
{% url 'socialaccount_signup' as action_url %}
|
|
{% element form form=form method="post" action=action_url %}
|
|
{% slot body %}
|
|
{% csrf_token %}
|
|
{% element fields form=form unlabeled=True %}
|
|
{% endelement %}
|
|
{{ redirect_field }}
|
|
{% endslot %}
|
|
{% slot actions %}
|
|
{% element button type="submit" %}
|
|
{% trans "Sign Up" %}
|
|
{% endelement %}
|
|
{% endslot %}
|
|
{% endelement %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|