diff options
Diffstat (limited to 'central/trunk/theme')
-rw-r--r-- | central/trunk/theme/activated.tpl | 21 | ||||
-rw-r--r-- | central/trunk/theme/register.tpl | 72 | ||||
-rw-r--r-- | central/trunk/theme/registered.tpl | 14 |
3 files changed, 97 insertions, 10 deletions
diff --git a/central/trunk/theme/activated.tpl b/central/trunk/theme/activated.tpl index 43c716f..ee265e7 100644 --- a/central/trunk/theme/activated.tpl +++ b/central/trunk/theme/activated.tpl | |||
@@ -1,14 +1,15 @@ | |||
1 | <HTML> | 1 | <HTML> |
2 | <HEAD> | 2 | <HEAD> |
3 | <TITLE><!--SITENAME--> InstaDisc Central Server</TITLE> | 3 | <TITLE><!--SITENAME--> InstaDisc Central Server</TITLE> |
4 | </HEAD> | 4 | </HEAD> |
5 | <BODY> | ||
6 | <CENTER> | ||
7 | <H1>InstaDisc Activation</H1> | ||
8 | 5 | ||
9 | <P>Thank you for activating! You've now been signed up for the InstaDisc service. | 6 | <BODY> |
10 | You will recieve an email with the information to input into your InstaDisc client. | 7 | <CENTER> |
11 | </CENTER> | 8 | <H1>InstaDisc Activation</H1> |
12 | </BODY> | 9 | |
10 | <P>Thank you for activating! You've now been signed up for the InstaDisc service. | ||
11 | You will recieve an email with the information to input into your InstaDisc client. | ||
12 | </CENTER> | ||
13 | </BODY> | ||
13 | </HTML> | 14 | </HTML> |
14 | 15 | ||
diff --git a/central/trunk/theme/register.tpl b/central/trunk/theme/register.tpl new file mode 100644 index 0000000..41fa6e9 --- /dev/null +++ b/central/trunk/theme/register.tpl | |||
@@ -0,0 +1,72 @@ | |||
1 | <HTML> | ||
2 | <HEAD> | ||
3 | <TITLE><!--SITENAME--> InstaDisc Central Server</TITLE> | ||
4 | <LINK REL="stylesheet" TYPE="text/css" HREF="uniform.css"> | ||
5 | </HEAD> | ||
6 | |||
7 | <BODY> | ||
8 | <CENTER> | ||
9 | <H1>InstaDisc Registration</H1> | ||
10 | |||
11 | <P>If you would like to sign up for our InstaDisc service, please fill out the form below. | ||
12 | </CENTER> | ||
13 | |||
14 | <FORM CLASS="uniform" ACTION="./register.php?submit=" METHOD="POST"> | ||
15 | |||
16 | <!--BEGIN ERROR--> | ||
17 | <DIV ID="errorMsg">Uh oh! Validation errors!<P> | ||
18 | <OL> | ||
19 | <!--END ERROR--> | ||
20 | |||
21 | <!--BEGIN ERRORS--> | ||
22 | <LI><A HREF="#error<!--ERRORS.NAME-->"><!--ERRORS.MSG--></A></LI> | ||
23 | <!--END ERRORS--> | ||
24 | |||
25 | <!--BEGIN ERROR--> | ||
26 | </OL> | ||
27 | </DIV> | ||
28 | <!--END ERROR--> | ||
29 | |||
30 | <FIELDSET CLASS="inlineLabels"> | ||
31 | <LEGEND>User Details</LEGEND> | ||
32 | |||
33 | <DIV CLASS="ctrlHolder<!--USERNAME_ERR-->"> | ||
34 | <!--BEGIN USERNAME_ERRS--> | ||
35 | <P ID="error<!--USERNAME_ERRS.NAME-->" CLASS="errorField"><EM>*</EM> | ||
36 | <!--USERNAME_ERRS.MSG--> | ||
37 | </P> | ||
38 | <!--END USERNAME_ERRS--> | ||
39 | |||
40 | <LABEL FOR="username"><EM>*</EM> Username: </LABEL> | ||
41 | <INPUT TYPE="text" ID="username" NAME="username" CLASS="textInput" VALUE="<!--USERNAME-->"> | ||
42 | </DIV> | ||
43 | |||
44 | <DIV CLASS="ctrlHolder<!--PASSWORD_ERR-->"> | ||
45 | <!--BEGIN PASSWORD_ERRS--> | ||
46 | <P ID="error<!--PASSWORD_ERRS.NAME-->" CLASS="errorField"><EM>*</EM> | ||
47 | <!--PASSWORD_ERRS.MSG--> | ||
48 | </P> | ||
49 | <!--END PASSWORD_ERRS--> | ||
50 | |||
51 | <LABEL FOR="password"><EM>*</EM> Password: </LABEL> | ||
52 | <INPUT TYPE="password" ID="password" NAME="password" CLASS="textInput" VALUE="<!--PASSWORD-->"> | ||
53 | </DIV> | ||
54 | |||
55 | <DIV CLASS="ctrlHolder<!--EMAIL_ERR-->"> | ||
56 | <!--BEGIN EMAIL_ERRS--> | ||
57 | <P ID="error<!--EMAIL_ERRS.NAME-->" CLASS="errorField"><EM>*</EM> | ||
58 | <!--EMAIL_ERRS.MSG--> | ||
59 | </P> | ||
60 | <!--END EMAIL_ERRS--> | ||
61 | |||
62 | <LABEL FOR="email"><EM>*</EM> Email: </LABEL> | ||
63 | <INPUT TYPE="text" ID="email" NAME="email" CLASS="textInput" VALUE="<!--EMAIL-->"> | ||
64 | </DIV> | ||
65 | </FIELDSET> | ||
66 | |||
67 | <DIV CLASS="buttonHolder"> | ||
68 | <INPUT TYPE="submit" NAME="submit" VALUE="Submit"> | ||
69 | </DIV> | ||
70 | </FORM> | ||
71 | </BODY> | ||
72 | </HTML> | ||
diff --git a/central/trunk/theme/registered.tpl b/central/trunk/theme/registered.tpl new file mode 100644 index 0000000..9a473e1 --- /dev/null +++ b/central/trunk/theme/registered.tpl | |||
@@ -0,0 +1,14 @@ | |||
1 | <HTML> | ||
2 | <HEAD> | ||
3 | <TITLE><!--SITENAME--> InstaDisc Central Server</TITLE> | ||
4 | </HEAD> | ||
5 | |||
6 | <BODY> | ||
7 | <CENTER> | ||
8 | <H1>InstaDisc Registration</H1> | ||
9 | |||
10 | <P>Thank you for registering! An activation email has been sent to the address you provided. When you recieve it, copy the | ||
11 | code inside to the <A HREF="activate.php">Activation page</A>. | ||
12 | </CENTER> | ||
13 | </BODY> | ||
14 | </HTML> | ||