-
Notifications
You must be signed in to change notification settings - Fork 0
/
singupPage.html
138 lines (109 loc) · 3.49 KB
/
singupPage.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Sign Up Page </title>
<style>
form{
background-color:#e86dda ;
padding : 100px;
padding-top : 30px;
border : 3px solid #75166a ;
border-radius : 6px ;
height:350px;
}
input{
margin:3px;
}
label{
font-size:20px;
}
input[type=submit]{
width:150px;
margin-left:0;
}
</style>
</head>
<body>
<header style="width:99.7% ; background-color:#e86dda ; padding:2px ; border: 2px solid #a11f92 ; border-radius:4px" >
<table style="width:100%">
<tr >
<!--logo here -->
<td style="width:35% ; ">
<img src="whateverLogo.png" alt="site logo" width="100">
</td>
<!--menu here -->
<td style="width:70px ; align:center" >
<ul>
<li style="color:#75166a ; font-weight:bold "> Maps </li>
</ul>
</td>
<td style="padding:0px ; margin:2px ; width:70px">
<ul>
<li style="color:#75166a ; font-weight:bold "> Resources </li>
</ul>
</td>
<td style="padding:0px ; margin:2px ; width:70px">
<ul>
<li style="color:#75166a ; font-weight:bold "> Events </li>
</ul>
</td>
<td style="padding:0px ; margin:2px ; width:70px">
<ul>
<li style="color:#75166a ; font-weight:bold "> Products </li>
</ul>
</td>
<!--SI/SU here -->
<td>
<table style=" margin-left:65%" >
<tr style="text-align:center">
<td><a href="index.html"><img src="home.png" alt="home logo" width="50" ></a></td>
</tr>
</table>
</td>
</tr>
</table>
</header>
<table style="width:100% ">
<tr >
<!--reg form -->
<td>
<form >
<h1>SignUp</h1>
<label for="Name">Name :</label>
<input type="text" name="Name" id="Name" > <br>
<label for="Email">Email : </label>
<input type="text" name="Email" id="Email">
<h3 >favorite cities :</h3>
<input type="checkbox" name="Sharqeiah" value="Sharqeiah" id="Sharqeiah">
<label for="Sharqeiah">Sharqeiah</label>
<input type="checkbox" name="Riyadh" value="Riyadh" id="Riyadh">
<label for="Riyadh">Riyadh</label>
<input type="checkbox" name="Mecca" value="Mecca" id="Mecca">
<label for="Mecca">Mecca</label>
<input type="checkbox" name="Jeddah" value="Jeddah" id="Jeddah">
<label for="Jeddah">Jeddah</label>
<br>
<input type="submit" name="SignUp" value="SignUp" id="SignUp">
</form>
</td>
<!--login form -->
<td >
<form >
<h1>Login</h1>
<label for="Name">Name :</label>
<input type="text" name="Name" value=""> <br>
<label for="Email">Email : </label>
<input type="text" name="Email" value=""><br>
<input type="submit" name="Login" value="Login">
</form>
</td>
</tr>
</table>
<footer style="text-align:center ; ">
<p>Author: Saad Mohammed Alshrideh<br>
<a href="mailto:s201723530@kfupm.edu.sa">s201723530@kfupm.edu.sa</a></p><br>
<a href="https://imgur.com/bxFg1Qk">validation</a>
</footer>
</body>
</html>