-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.php
121 lines (100 loc) · 4.38 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
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
<?php
include ("db_connect.php")
?>
<!DOCTYPE html>
<html>
<head>
<title>Sign Up</title>
<link rel="stylesheet" href="style.css">
<script language="JavaScript" type="text/javascript" src="validation.js"></script>
<style>
#container{
height: 1000px;
}
#header{
height: 30%;
}
#mainbody{
height:51%;
width:100%;
}
#footer {
height: 15%;
}
.area{
height: 40px;
border-width: 1px;
border-radius:3px;
border-color:black;
}
.button{
background-color: #aa8dd2;
color: white;
font-size: 15px;
border-radius: 10px;
height: 40px;
width: 100%;
}
</style>
</head>
<body>
<div id="container">
<div id="header"><div id="img1"><a href="" ><img src="Images/logo.jpg" width="15%" height="50%" align="left"></a></div>
<font color="white" style="font-family:'Good Times';float: left;font-size: 75px" > EXO<br>LEISURE</font>
<div id="text1">
<a href=""><img src="Images/cart.jpg" width="10%" height="10%" align="right"> </a>
<br><br><br><br><br><br><br>
<a href="SignUp.html"> <font color="white" style="float: right">     Sign Up</font></a>
<a href="SignIn.html" ><font color="white" style="float: right">Sign In     </font></a>
</div>
<div id="navbar">
<li><font color="black" size="3">Search</font></li>
<li><a href="ContactUs.html"><font color="black" size="4" >Contact Us</font></a></li>
<li><a href=""><font color="black" size="4">About Us</font></a></li>
<li><a href=""><font color="black" size="4">Profile</font> </a></li>
<li><a href="Products.html"><font color="black" size="4">Products</font> </a></li>
<li><a href="Activities.html"><font color="black" size="4">Activities</font> </a></li>
<li><a href="Homepage.html"><font color="black" size="4">Home</font> </a></li><br/>
</div> </div>
<div id="mainbody" align="center">
<h1>Sign Up</h1>
<h2>Sign up to browse more</h2>
<form name="form1" onsubmit="return form1Validate()" method="post" action="Register_db.php">
<table cellspacing="10px">
<tr>
<td><input type="text" placeholder=" Your name" name="urName" value="" class="area" size="35px"> </td>
</tr>
<tr>
<td><input type="text" placeholder=" Email" name="email" value="" class="area" size="35px"> </td>
</tr>
<tr>
<td><input type="password" placeholder=" Password" id="pd" value="" class="area" size="35px"> </td>
</tr>
<tr>
<td><input type="password" placeholder=" Re type password" id="cpd" value="" class="area" size="35px"> </td>
</tr>
<td><input type="submit" name="sUp" value="Sign Up" class="button" size="35px"></td>
</tr>
<tr>
<td><a href=""><p align="center">Forgot Password?</p></a> </td>
</tr>
</table>
</form>
</div>
<div id="footer">
<li><a href="Homepage.html"><font color="white">Home</font></a></li>
<li><a href="Activities.html"><font color="white">Activities</font> </a></li>
<li><a href="Products.html"><font color="white">Products</font></a></li>
<li><a href=""><font color="white">Profile</font></a></li>
<li><a href="ContactUs.html"><font color="white">Contact us</font> </a> </li>
<li><font color="white">Subscribe</font></li>
<a href=""><img src="Images/facebook.jpg" height="30%"> </a>
<a href=""><img src="Images/instagram.jpg" height="30%"> </a>
<a href=""><img src="Images/snapchat.jpg" height="30%"> </a>
<a href=""><img src="Images/twitter.jpg" height="30%"> </a>
<a href=""><img src="Images/youtube.jpg" height="30%"> </a>
<br><br><br><br><br> Copyright @ IWT Project-Y1-S2-Group 3.2. 2017-All rights Reseved
</div>
</div>
</body>
</html>