feed83f517
* Proposals forms now have a header panel * Adds panels to the speaker forms * Imports latest pinax accounts templates * speakers/base and proposals/base now derive from utility_page.html * Most login forms now derive from take flight themes * Missed email_confirm * More accounts bits * Restructures login form * Puts submit etc buttons inside fieldset borders
14 lines
502 B
HTML
14 lines
502 B
HTML
{% 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 %}
|