pytask/templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 15:13:56 +0530
changeset 80 49ee2a7f1350
parent 69 c6bca38c1cbf
child 81 70726699ca80
permissions -rw-r--r--
prettified the user registration page
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
<form action="/accounts/register/" method="post">
22
8b891483e052 fixed a typo and set the settings required for django registration
Nishanth Amuluru <nishanth@fossee.in>
parents: 20
diff changeset
     4
{% csrf_token %}
80
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
     5
<p><label for="id_username">Username:</label> <input id="id_username" type="text" class="required" name="username" maxlength="30" /></p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
     6
<p><label for="id_email">Email address:</label> <input id="id_email" type="text" class="required" name="email" maxlength="75" /></p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
     7
<p><label for="id_password1">Password:</label> <input id="id_password1" type="password" class="required" name="password1" /></p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
     8
<p><label for="id_password2">Password (again):</label> <input id="id_password2" type="password" class="required" name="password2" /></p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
     9
<p><label for="id_full_name">Name as on your bank account:</label> <input id="id_full_name" type="text" name="full_name" maxlength="50" /> Any DD/Cheque will be issued on this name</p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    10
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    11
<p><label for="id_aboutme">About Me:</label>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    12
<textarea id="id_aboutme" rows="10" cols="40" name="aboutme"></textarea>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    13
A write up about yourself to aid the reviewer in judging your eligibility for a task. 
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    14
It can have your educational background, CGPA, field of interests etc.,</p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    15
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    16
<p><label for="id_dob">date of birth:</label> <input type="text" name="dob" id="id_dob" /> YYYY-MM-DD</p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    17
<p><label for="id_gender">gender:</label> <select name="gender" id="id_gender">
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    18
	<option value="M">Male</option>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    19
	<option value="F">Female</option>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    20
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    21
</select></p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    22
<p><label for="id_address">Address:</label>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    23
<textarea id="id_address" rows="10" cols="40" name="address"></textarea>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    24
This information will be used while sending DD/Cheque</p>
49ee2a7f1350 prettified the user registration page
Nishanth Amuluru <nishanth@fossee.in>
parents: 69
diff changeset
    25
<p><label for="id_phonenum">Phone Number:</label> <input id="id_phonenum" type="text" name="phonenum" maxlength="10" /></p>
20
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    26
<input type="submit" value="Submit" />
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    27
</form>
0e8d0f5474f2 Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    28
{% endblock %}