39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | {% extends "account/base_entrance.html" %} | ||
|  | {% load allauth i18n %} | ||
|  | {% block head_title %} | ||
|  |     {% trans "Signup" %} | ||
|  | {% endblock head_title %} | ||
|  | {% block content %} | ||
|  |     {% element h1 %} | ||
|  |         {% trans "Sign Up" %} | ||
|  |     {% endelement %} | ||
|  |     {% setvar link %} | ||
|  |         <a href="{{ login_url }}"> | ||
|  |         {% endsetvar %} | ||
|  |         {% setvar end_link %} | ||
|  |         </a> | ||
|  |     {% endsetvar %} | ||
|  |     {% element p %} | ||
|  |         {% blocktranslate %}Already have an account? Then please {{ link }}sign in{{ end_link }}.{% endblocktranslate %} | ||
|  |     {% endelement %} | ||
|  |     {% if not SOCIALACCOUNT_ONLY %} | ||
|  |         {% url 'account_signup' as action_url %} | ||
|  |         {% element form form=form method="post" action=action_url tags="entrance,signup" %} | ||
|  |             {% slot body %} | ||
|  |                 {% csrf_token %} | ||
|  |                 {% element fields form=form unlabeled=True %} | ||
|  |                 {% endelement %} | ||
|  |                 {{ redirect_field }} | ||
|  |             {% endslot %} | ||
|  |             {% slot actions %} | ||
|  |                 {% element button tags="prominent,signup" type="submit" %} | ||
|  |                     {% trans "Sign Up" %} | ||
|  |                 {% endelement %} | ||
|  |             {% endslot %} | ||
|  |         {% endelement %} | ||
|  |     {% endif %} | ||
|  |     {% if SOCIALACCOUNT_ENABLED %} | ||
|  |         {% include "socialaccount/snippets/login.html" with page_layout="entrance" %} | ||
|  |     {% endif %} | ||
|  | {% endblock content %} |