github.com/blystad/deis@v0.11.0/controller/web/templates/account/signup.html (about) 1 {% extends "account/base.html" %} 2 3 {% load url from future %} 4 {% load i18n %} 5 6 {% block head_title %}{% trans "Signup" %}{% endblock %} 7 8 {% block content %} 9 <h1>{% trans "Sign Up" %}</h1> 10 11 <p>{% blocktrans %}Already have an account? <a href="{{ login_url }}"><strong>Log in</strong></a>.{% endblocktrans %}</p> 12 13 <p> 14 Please use the <a href="https://pypi.python.org/pypi/deis">Deis CLI</a> to sign up. 15 </p> 16 <!-- 17 <form class="signup" id="signup_form" method="post" action="{% url 'account_signup' %}"> 18 {% csrf_token %} 19 {{ form.as_p }} 20 {% if redirect_field_value %} 21 <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" /> 22 {% endif %} 23 <button type="submit">{% trans "Sign Up" %} »</button> 24 </form> 25 --> 26 27 28 {% endblock %} 29 30