-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathregistration.php
194 lines (185 loc) · 7.05 KB
/
registration.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?php
require 'core.inc.php';
require 'connect.inc.php';
require 'core.inc1.php';
if(!logged_in() || !logged_in1())
{
if(isset($_POST['username']) && isset($_POST['email']) && isset($_POST['password']) && isset($_POST['password_agn']) && isset($_POST['firstname']) && isset($_POST['lastname']))
{
$username=$_POST['username'];
$email=$_POST['email'];
$password=$_POST['password'];
$password_hash=md5($password);
$password_agn=$_POST['password_agn'];
$firstname=$_POST['firstname'];
$lastname=$_POST['lastname'];
$gender=@$_POST['gender'];
$profession=@$_POST['profession'];
$department=@$_POST['department'];
if(!empty($username) && !empty($email) && !empty($password) && !empty($password_agn) && !empty($firstname) && !empty($lastname) && !empty($gender) && !empty($profession) && !empty($department))
{
if($password!=$password_agn)
{
echo '<script type="text/javascript">alert("Passwords Donot Match!")</script>';
}
else
{
if($profession=='Student')
{
$query="SELECT username from Student where username='".$username."'";
$query_run=mysqli_query($handle,$query);
if(mysqli_num_rows($query_run)==1)
{
echo '<script type="text/javascript">alert("Username Already Exists.")</script>';
}
else
{
$query="INSERT INTO Student VALUES('','".mysqli_real_escape_string($handle,$username)."','".mysqli_real_escape_string($handle,$email)."','".mysqli_real_escape_string($handle,$password_hash)."','".mysqli_real_escape_string($handle,$firstname)."','".mysqli_real_escape_string($handle,$lastname)."','".mysqli_real_escape_string($handle,$gender)."','".mysqli_real_escape_string($handle,$department)."','','','','','','','','')";
if($query_run=mysqli_query($handle,$query))
{
echo '<script type="text/javascript">alert("Successfully registered. Please login to continue.")</script>';
header( "refresh:1;url=login.php" );
}
}
}
else if($profession=='Faculty')
{
$query="SELECT username from Faculty where username='".$username."'";
$query_run=mysqli_query($handle,$query);
if(mysqli_num_rows($query_run)==1)
{
echo '<script type="text/javascript">alert("Username Already Exists.")</script>';
}
else
{
$query="INSERT INTO Faculty VALUES('','".mysqli_real_escape_string($handle,$username)."','".mysqli_real_escape_string($handle,$email)."','".mysqli_real_escape_string($handle,$password_hash)."','".mysqli_real_escape_string($handle,$firstname)."','".mysqli_real_escape_string($handle,$lastname)."','".mysqli_real_escape_string($handle,$gender)."','".mysqli_real_escape_string($handle,$department)."','','','','','','','','','','','')";
if($query_run=mysqli_query($handle,$query))
{
echo '<script type="text/javascript">alert("Successfully registered. Please login to continue.")</script>';
header( "refresh:1;url=loginfac.php" );
}
}
}
}
}
else
{
echo '<script type="text/javascript">alert("Please Fill All The Details.")</script>';
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Register Here!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel='stylesheet prefetch' href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900'>
<link rel="stylesheet" href="demo.css">
<link rel="stylesheet" href="sky-form.css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/sky-forms-ie8.css">
<![endif]-->
<!--[if lt IE 10]>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/jquery.placeholder.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="js/sky-forms-ie8.js"></script>
<![endif]-->
</head>
<body style="background:url(slide11.jpg)";>
<h2 style="text-align:right">Go back to<a href="new.php" style="color:maroon;text-decoration:none;"> Home </a>page...</h2>
<div class="body body-s">
<form action="registration.php" class="sky-form" method="POST">
<header>Registration form</header>
<fieldset>
<section>
<label class="input">
<i class="icon-append icon-user"></i>
<input type="text" placeholder="Username" name="username">
<b class="tooltip tooltip-bottom-right">Only characters and numbers</b>
</label>
</section>
<section>
<label class="input">
<i class="icon-append icon-envelope-alt"></i>
<input type="text" placeholder="Email address" name="email">
<b class="tooltip tooltip-bottom-right">Needed to verify your account</b>
</label>
</section>
<section>
<label class="input">
<i class="icon-append icon-lock"></i>
<input type="password" placeholder="Password" name="password">
<b class="tooltip tooltip-bottom-right">Only characters and numbers</b>
</label>
</section>
<section>
<label class="input">
<i class="icon-append icon-lock"></i>
<input type="password" placeholder="Confirm password" name="password_agn">
<b class="tooltip tooltip-bottom-right">Only characters and numbers</b>
</label>
</section>
</fieldset>
<fieldset>
<div class="row">
<section class="col col-6">
<label class="input">
<input type="text" placeholder="First name" name="firstname">
</label>
</section>
<section class="col col-6">
<label class="input">
<input type="text" placeholder="Last name" name="lastname">
</label>
</section>
</div>
<section>
<label class="select">
<select name="gender">
<option value="0" selected disabled>Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
<i></i>
</label>
</section>
<section>
<label class="select">
<select name="profession">
<option value="0" selected disabled>Profession</option>
<option value="Student">Student</option>
<option value="Faculty">Faculty</option>
</select>
<i></i>
</label>
</section>
<section>
<label class="select">
<select name="department">
<option value="0" selected disabled>Department</option>
<option value="CSE">CSE</option>
<option value="IT">IT</option>
</select>
<i></i>
</label>
</section>
</fieldset>
<footer>
<input type="submit" class="button" value="Register">
</footer>
</form>
</div>
</body>
</html>
<?php
}
else if(logged_in() || logged_in1())
{
echo 'You\'re already registered and logged in. Go back to login page and logout to register another account.';
}
?>