]> andersk Git - sql-web.git/blob - signup.php
git-svn-id: svn://presbrey.mit.edu/sql/mitsql@109 a142d4bd-2cfb-0310-9673-cb33a7e74f58
[sql-web.git] / signup.php
1 <?php
2
3 require_once('mitsql.cfg.php');
4 require_once('mitsql.lib.php');
5
6 if (!isSSL())
7         redirect('signup',true);
8
9 if (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
35 include 'tpl/signup.php';
36
37 ?>
This page took 0.03005 seconds and 5 git commands to generate.