{% extends "base_logged_out.html" %} {% load i18n %} {% block base_content %}

{% trans 'Demo' %}

{% trans "Welcome to the demo instance of the future May First control panel!" %}

{% trans "Want to try it out? Please do! " %}{% trans "Fill out the form to the right to generate a membership and username and password. When you are done, please click the feedback link to tell us what you think." %}

{% trans "This demo won't create anything and won't send any email - it is just a demo to give you a sense of how things work. When you login, try creating a pretend email address and a web site." %}

{% blocktrans %}Also, this demo instance will reset itself every morning at 3:00 am America/New_York time (in {{ hours_left }} hours and {{ min_left }} minutes). {{ time_left_message }}{% endblocktrans %}

{% trans "Create a demo account" %}

{% csrf_token %}
{{ form.membership_name.label_tag }} {% if form.membership_name.help_text %}
{{ form.membership_name.help_text|safe }}
{% endif %} {{ form.membership_name }} {{ form.membership_name.errors }}
{{ form.first_name.label_tag }} {% if form.first_name.help_text %}
{{ form.first_name.help_text|safe }}
{% endif %} {{ form.first_name }} {{ form.first_name.errors }}
{{ form.username.label_tag }} {% if form.username.help_text %}
{{ form.username.help_text|safe }}
{% endif %} {{ form.username }} {{ form.username.errors }}
{{ form.password.label_tag }} {% if form.password.help_text %}
{{ form.password.help_text|safe }}
{% endif %} {{ form.password }} {{ form.password.errors }}
{{ form.domain.label_tag }} {% if form.domain.help_text %}
{{ form.domain.help_text|safe }}
{% endif %} {{ form.domain }} {{ form.domain.errors }}
{% trans "All fields are required." %}
{% endblock %}