]> andersk Git - sql-web.git/blame_incremental - signup.php
git-svn-id: svn://presbrey.mit.edu/sql/mitsql@74 a142d4bd-2cfb-0310-9673-cb33a7e74f58
[sql-web.git] / signup.php
... / ...
CommitLineData
1<?php
2
3require_once('mitsql.cfg.php');
4require_once('mitsql.lib.php');
5
6if (!isSSL())
7 redirect('signup',true);
8
9if (isLoggedIn()) {
10
11 redirect('index');
12
13} else {
14
15 if (is_null($SSLCred)) {
16 $err[] = 'Please install a valid certificate.';
17 } else {
18 if (isPost() && $LoginSSL->canSignup()) {
19 if (empty($i_p1)) {
20 $err[] = 'Your password may not be blank.';
21 } elseif ($i_p1 != $i_p2) {
22 $err[] = 'Your confirmation password does not match.';
23 } else {
24 $u = new User($LoginSSL->getUserId());
25 $u->signup($i_p1);
26 $LoginSSL->refresh();
27 redirect('login', true);
28 }
29 } elseif (isPost()) {
30 $err[] = 'You may not signup.';
31 }
32 }
33}
34
35include 'tpl/signup.php';
36
37?>
This page took 0.024099 seconds and 5 git commands to generate.