~devcamcar/horizon/lp711024

« back to all changes in this revision

Viewing changes to dashboard/templates/registration/registration_form.html

  • Committer: Devin Carlen
  • Date: 2011-01-12 21:43:31 UTC
  • Revision ID: devin.carlen@gmail.com-20110112214331-7xt353qe2e7vala6
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
{% block region %}{% endblock %}
 
3
 
 
4
{% block title %}Register{% endblock %}
 
5
 
 
6
{% block content %}
 
7
<div id="page_head">
 
8
  <h1>Create Your Account</h1>
 
9
  <p id="page_description">Create your new account by providing the information blow.</p>
 
10
</div>
 
11
 
 
12
<div id="home_login" class="block reset">
 
13
  <h3>Register</h3>
 
14
  <form action="" method="post">
 
15
    <fieldset>
 
16
      {% csrf_token %}
 
17
      {{ form.username.errors }}
 
18
      <label for="id_username">Username:</label> {{ form.username }}
 
19
      {{ form.email.errors }}
 
20
      <label for="id_email">E-mail address:</label> {{ form.email }}
 
21
      {{ form.password1.errors }}
 
22
      <label for="id_password1">Password:</label> {{ form.password1 }}
 
23
      {{ form.password2.errors }}
 
24
      <label for="id_password2">Confirm Password:</label> {{ form.password2 }}
 
25
      <input id="btn_reset_password" type="submit" value="Reset Password" />
 
26
    </fieldset>
 
27
  </form>
 
28
</div>
 
29
{% endblock %}