-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.ejs
69 lines (59 loc) · 2.42 KB
/
donate.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donate-Sharing surplus </title>
<link href="donate.css" rel="stylesheet">
</head>
<body>
<!-- Header -->
<header>
<a href="/" class="d-inline-flex link-body-emphasis text-decoration-none">
<img src="food.jpg" height="60px" width="170px" alt="Logo">
</a>
<nav>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/service">Services</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Selection Container -->
<div class="selection-container">
<div class="selection-header">
</div>
<div class="selection-grid">
<div class="selection-card">
<div class="selection-icon">
<i class="fas fa-utensils donor-icon"></i>
<img src="charity.png" class="dpic">
</div>
<h2>I Want to Donate</h2>
<p>For hotels, restaurants, and convention centers with excess food</p>
<div class="selection-options">
<div class="option-item">
<i class="fas fa-building donor-icon"></i>
<img src="convention.jpg" style="height:50px;width:50px;">
<div class="option-content">
<h3>Convention Centers</h3>
<p>Register to donate excess food from events</p>
</div>
</div>
<div class="option-item">
<i class="fas fa-hotel donor-icon"></i>
<img src="restaurant.jpg" style="height:50px;width:50px;">
<div class="option-content">
<h3>Hotels & Restaurants</h3>
<p>Partner with us to reduce food waste</p>
</div>
</div>
</div>
<form action="/donate/register">
<button class="btn btn-donor">Register as Donor</button>
</form>
</div>
</body>
</html>