-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
60 lines (58 loc) · 1.97 KB
/
signup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrashCash-Login</title>
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="container">
<div class="header-left">
<a href="index.html">
<h3 class="logo">Trash Cash</h3>
</a>
</div>
<div class="header-icon">
<span class="fa fa-bars menu-icon"></span>
</div>
<div class="header-right">
<a href="about.html">About Us</a>
<a href="points.html">Points</a>
<a href="pickup.html">Pickup</a>
<a href="login.html">Login</a>
</div>
</div>
</header>
<div class="login">
<form>
<div class="form-field-container">
<label for="user_name">Name:</label>
<input type="text" id="user_name" placeholder="Enter Name" name="user_name" required>
</div>
<div class="form-field-container">
<label for="email">Email:</label>
<input type="email" id="user_email" placeholder="Enter Email" name="user_email" required>
</div>
<div class="form-field-container">
<label for="user_phone">Phone:</label>
<input type="text" id="user_phone" placeholder="Enter Phone No." name="user_phone" required>
</div>
<div class="form-field-container">
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Enter Password" name="password" required>
</div>
<div class="form-field-container submit-btn">
<button type="submit">Sign Up</button>
</div>
<a class="a1" href=index.html>
<button type="button" class="cancelbtn">Cancel</button>
</a>
</form>
</div>
</body>
</html>