-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignup.html
More file actions
43 lines (43 loc) · 1.36 KB
/
Copy pathSignup.html
File metadata and controls
43 lines (43 loc) · 1.36 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Page</title>
<link rel="stylesheet" type="text/css" href="defaultstyle.css">
<link rel="stylesheet" type="text/css" href="mystyle.css">
<link href="https://fonts.googleapis.com/css?family=Titan+One" rel="stylesheet">
</head>
<body>
<h1>
Ride-My-Way
</h1>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="rides.html">Rides</a></li>
<li><a href="drivers.html">Drivers</a></li>
<li><a href="contact.html">Contact</a></li>
<li style="float:right"><a href="Signup.html" class="active">Signup</a></li>
<li style="float:right"><a href="Login.html">Login</a></li>
</ul>
</div>
<div class="Login">
<img src="Images/avatar.png" class="myavatar">
<div class="l"><h1>Signup Here</h1></div>
<form>
<p>Username</p>
<input type="text" name="" placeholder="Enter Username" required="">
<p>E-Mail</p>
<input type="email" name="" placeholder="Enter your E-Mail address" required="">
<p>Password</p>
<input type="text" name="" placeholder="Enter Password" required="">
<input type="submit" name="" value="Register">
<a href="Login.html">Have an account?Login instead ..</a>
</form>
</div>
<br>
<div id="footer">
<p>© 2018 Ride-My-Way All Rights Reserved | Antony Kavooh</p>
</div>
</body>
</html>