-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpickup.html
More file actions
37 lines (37 loc) · 1.21 KB
/
Copy pathpickup.html
File metadata and controls
37 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrashCash</title>
<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" class="login">Login</a>
</div>
</div>
</header>
<div class="notlogin" style="margin: 10%;">
<h3>You need to login in order to use TrashCash.</h3>
<a href="login.html" style="color: black;">
<div class="login_btn" style="width: max-content; padding: 10px; border:1px solid black;">Login</div>
</a>
</div>
</body>
</html>