~pidgeon690/pidge-groups/trunk

« back to all changes in this revision

Viewing changes to Apps/Users/templates/users-register-details

  • Committer: Fergus Ross Ferrier
  • Date: 2009-05-25 22:10:29 UTC
  • mfrom: (273.2.4 refactor+user)
  • Revision ID: hello@fergusrossferrier.co.uk-20090525221029-gqdycg3rfhxujqpz
Merged user-refactor fun.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "base" %}
2
 
{% block title %}Register{% endblock %}
3
 
{% block content %}
4
 
 
5
 
<link rel="stylesheet" type="text/css" href="/resources/form.css" />
6
 
<div class='mp-box' style='float:left; width: 350px;'>
7
 
    <h3>
8
 
        Your Details
9
 
    </h3>
10
 
    <div class='mp-form'>
11
 
        <form action='.' method='post'>
12
 
            {% if flags.passwords_not_same %}<div class='errorlist'>Password and password check are not the same. Please re-type.</div>{% endif %}
13
 
            {% if flags.already_user %}<div class='errorlist'>This e-mail address is already registered. Perhaps you'd like to <a href='/Login/Reset-Password/'>receive a password reminder</a> for your existing account?</div>{% endif %}
14
 
            {{ userform }}
15
 
            {{ cambridgeform }}
16
 
            <input class='mp-form-button' type='submit' value='Register'>
17
 
        </form>
18
 
    </div>
19
 
</div>
20
 
 
21
 
<div class='mp-box' style='float:right; width: 250px;'>
22
 
    <img src='/images/home3/confused_small.png' style='float:right; padding: 4px 4px 4px 4px;'/>
23
 
    <h3>
24
 
        <b>Join Now</b> - Here's Why:
25
 
    </h3>
26
 
    <p>
27
 
        <b>Relevant Information</b>
28
 
        <br />You tell us a bit about yourself, and we tell you about things going on that you'll like. Simple, and useful. 
29
 
    </p>
30
 
    <p>
31
 
        <b>Free Pocket Diary</b>
32
 
        <br />You can't always get on the 'net, so we send you a free custom-printed pocket diary with events pre-filled based on your interests.
33
 
    </p>
34
 
    <p>
35
 
        <b>Minimal Emailage</b>
36
 
        <br />You control how much email you get from us. We want you to get information on things you're interested in, in the format you want it. 
37
 
    </p>
38
 
    <p>
39
 
        <b>Your Identity is Safe</b>
40
 
        <br />Your details are not sold to evil companies. There are no targeted adverts. Percy looks after your personal information.
41
 
    </p>
42
 
    <p>
43
 
        <b>Not-for-Profit</b>
44
 
        <br />MyPidge is a student society, and the code we use is Open Source. 
45
 
    </p>
46
 
        
47
 
    <p>
48
 
        <b>Any Questions?</b>
49
 
        <br /><a href='{% url basic.views.Feedback %}'>Email Percy</a>
50
 
    </p>
51
 
</div>
52
 
 
53
 
 
54
 
{% endblock %}