mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-05 06:08:46 -05:00
14 lines
454 B
HTML
14 lines
454 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_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>
|
|
<a class="btn btn-secondary" href="{% url 'account_reset_password' %}">{% trans "Reset Password" %}</a>
|
|
{% endblock %} |