2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-14 02:53:08 +00:00
InvenTree/InvenTree/templates/account/signup_closed.html
Oliver 41318e4056
SSO tweaks (#4169)
* Slight tweaks to login settings page

* Cleanup login screen

* Custom socialaccount connect page

- Better rendering, just looks nicer etc

* Add custom account templates

- signup_closed
- social signup

* Catch potential email errors when signing up new user

* Add custom template for authentication error

* Bug fix for account base.html
2023-01-08 07:51:16 +11:00

20 lines
355 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Sign Up Closed" %}{% endblock %}
{% block content %}
<h3>{% trans "Sign Up Closed" %}</h3>
<p>{% trans "Sign up is currently closed." %}</p>
<hr>
<div>
<a href='{% url "account_login" %}'>
{% trans "Return to login page" %}
</a>
</div>
{% endblock %}