mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-14 02:53:08 +00:00
* 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
20 lines
355 B
HTML
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 %}
|