Files @ 42892ea3c849
Branch filter:

Location: symposion_app/pinaxcon/templates/account/signup_closed.html

Christopher Neugebauer
Fixes payment behaviour.
{% extends "site_base.html" %}

{% load i18n %}

{% block head_title %}{% trans "Sign up" %}{% endblock %}

{% block body %}
    <h1>{% trans "This site is in private beta" %}</h1>
    <p>{% blocktrans %}If you have signup code you can enter it below.{% endblocktrans %}</p>
    <form method="get" action="">
        <div><input type="text" name="code" placeholder="{% trans 'Your signup code...' %}" /></div>
        <div><input type="submit" class="btn btn-primary"></div>
    </form>
{% endblock %}