mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
18 lines
475 B
HTML
18 lines
475 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Sign Up Closed" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-6 offset-3">
|
|
<hr>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |