mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
13 lines
349 B
HTML
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 %} |