-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmake_new_account.php
executable file
·155 lines (98 loc) · 3.38 KB
/
make_new_account.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
/* ////////////////////////////////////////////////////////////////////////////////
** Copyright 2010 Matthew Burton, http://matthewburton.org
** Code by Burton and Joshua Knowles, http://auscillate.com
**
** This software is part of the Open Source ACH Project (ACH). You'll find
** all current information about project contributors, installation, updates,
** bugs and more at http://competinghypotheses.org.
**
**
** ACH is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** ACH is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Open Source ACH. If not, see <http://www.gnu.org/licenses/>.
//////////////////////////////////////////////////////////////////////////////// */
include("code/includes.php");
$active_user = new User();
$success = TRUE;
$fail_text = "";
foreach ($_REQUEST as $field => $value) {
$active_user->$field = addslashes($value);
}
if( $_REQUEST['username'] ) {
$result = mysql_do("SELECT * FROM users WHERE username = '".$_REQUEST['username']."'");
$rows = mysql_num_rows($result);
if ($rows==0) {
} else {
$success = FALSE;
$fail_text .= "<li>That username is already taken. Please try a different username.</li>";
}
} else {
$success = FALSE;
$fail_text .= "<li>You must enter a username.</li>";
}
if( strpos( $_REQUEST['username'], " " ) == FALSE ) {
} else {
$success = FALSE;
$fail_text .= "<li>Your username may not contain spaces.</li>";
}
if( $_REQUEST['password'] == $_REQUEST['password2'] ) {
if( $_REQUEST['password'] ) {
} else {
$success = FALSE;
$fail_text .= "<li>You must enter a password.</li>";
}
$active_user->password = $_REQUEST['password'];
} else {
$success = FALSE;
$fail_text .= "<li>Your passwords do not match.</li>";
}
if( strpos( $_REQUEST['email'], "@" ) != FALSE ) {
} else {
$success = FALSE;
$fail_text .= "<li>Your e-mail address does not contain a '@' and is not valid.</li>";
}
if( $success == TRUE ) {
$active_user->password = md5($active_user->password);
$active_user->insertNew();
$active_user->setCookies();
}
?>
<html>
<head>
<title>ACH</title>
<?php include("parts/includes.php"); ?>
</head>
<body onload="setTimeout('Effect.Fade(\'statusMessage\')',2500); setTimeout('Effect.Fade(\'statusMessage2\')',2500); bridge.replaceHeader('BridgeHeader', '1');">
<?php include("parts/header.php"); ?>
<?php include("parts/login_sidebar.php"); ?>
<div class="mainContainer">
<div class="ydsf left">
<div class="inner">
<div class="main">
<?php if( $success == TRUE ) { ?>
<h2>Created!</h2>
<p>Your account has been made.</p>
<?php include('intro.php');?>
<?php } else { ?>
<h2>Oops</h2>
<p>There has been a problem:</p>
<ul><?=$fail_text?></ul>
<p>Please use your browser's back button to go back and fix these.</p>
<?php } ?>
</div>
</div>
</div>
</div>
<?php include("parts/footer.php"); ?>
</body>
</html>