Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
7953 commits behind the upstream repository.
signup_closed.html 379 B
{% extends "account/base.html" %}

{% load i18n %}

{% block head_title %}{% trans "Sign Up Closed" %}{% endblock %}

{% block content %}
<div class="container">
  <div class="row">
    <div class="col-md-5">
        <h2>{% trans "Sign Up Closed" %}</h2>

        <p>{% trans "We are sorry, but the sign up is currently closed." %}</p>
    </div>
  </div>
</div>
{% endblock %}