-
Notifications
You must be signed in to change notification settings - Fork 35
/
signup.php
72 lines (66 loc) · 3.15 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<title>OG Tech - Sign Up</title>
<?php include "header.php"; ?>
<form action="includes/signup.inc.php" method="POST">
<div class="container">
<h3 class="underline white-text grid">Sign Up</h3>
<div class="rounded-card-parent center">
<div class="card rounded-card">
<div class="row">
<div class="input-field col s4 offset-s4">
<i class="material-icons prefix white-text">account_circle</i>
<input name="username" id="username" type="text" class="validate white-text" minlength="5" maxlength="12">
<label for="username" class="white-text">Username</label>
<span class="helper-text grey-text left-align" data-error="Min 5, Max 12 characters" data-success="Min 5, Max 12 characters">Min 5, Max 12 characters</span>
</div>
</div>
<div class="row">
<div class="input-field col s4 offset-s4">
<i class="material-icons prefix white-text"> password</i>
<input name="pwd" id="pwd" type="password" class="validate white-text" minlength="8" maxlength="20">
<label for="pwd" class="white-text"> Password</label>
<span class="helper-text grey-text left-align" data-error="Min 8, Max 20 characters" data-success="Min 8, Max 20 characters">Min 8, Max 20 characters</span>
</div>
</div>
<div class="row">
<div class="input-field col s4 offset-s4">
<i class="material-icons prefix white-text"> password</i>
<input name="repeat_pwd" id="repeat_pwd" type="password" class="validate white-text" maxlength="20">
<label for="repeat_pwd" class="white-text"> Repeat Password</label>
</div>
</div>
<div class="row">
<div class="input-field col s4 offset-s4">
<i class="material-icons prefix white-text">email</i>
<input name="email" id="email" type="email" class="validate white-text" maxlength="25">
<label for="email" class="white-text">Email</label>
<span class="helper-text white-text" data-error="wrong" data-success="correct"></span>
</div>
</div>
<input class="btn" type="submit" name="submit" value="Sign Up">
<div class="errormsg">
<?php
if (isset($_GET["error"]))
{
if ($_GET["error"] == "empty_input")
echo "<p>*Fill in all fields!<p>";
else if ($_GET["error"] == "invalid_uid")
echo "<p>*Choose a proper username!</p>";
else if ($_GET["error"] == "passwords_dont_match")
echo "<p>*Passwords doesn't match!</p>";
else if ($_GET["error"] == "username_taken")
echo "<p>*Username/Email already taken!</p>";
else if ($_GET["error"] == "none")
echo "<p class='green-text bold'>You have signed up! Please go to Login page</p>";
echo '<META HTTP-EQUIV="Refresh" Content="2; URL=signup.php">';
exit();
}
?>
</div>
</div>
</div>
</div>
</form>
<?php include "footer.php"; ?>
</html>