Files
recipes/cookbook/templates/account/signup_closed.html
2021-05-28 18:41:30 +02:00

13 lines
349 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Sign Up Closed" %}{% endblock %}
{% block content %}
<h1>{% trans "Sign Up Closed" %}</h1>
<p>{% trans "We are sorry, but the sign up is currently closed." %}</p>
<a class="btn btn-primary" href="{% url 'account_login' %}">{% trans "Sign In" %}</a>
{% endblock %}