-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
172 lines (116 loc) · 3.08 KB
/
Copy pathdonate.html
File metadata and controls
172 lines (116 loc) · 3.08 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>FeedLoop AI | Donate Food</title>
<link rel="stylesheet"
href="css/style.css">
</head>
<body>
<a href="index.html"
class="back-btn">
← Back
</a>
<button id="themeToggle" class="theme-btn">
🌙
</button>
<section class="donate-page">
<!-- LEFT SIDE -->
<div class="donate-left">
<span class="tagline">
Smart Food Donation
</span>
<h1>
Donate Food
<br>
Save Lives
</h1>
<p>
FeedLoop AI connects restaurants,
hostels and food providers with
nearby NGOs using intelligent
AI-powered automation.
</p>
<div class="donate-features">
<div class="donate-feature">
✔ AI NGO Matching
</div>
<div class="donate-feature">
✔ Real-Time Tracking
</div>
<div class="donate-feature">
✔ Fast Pickup Support
</div>
</div>
</div>
<!-- RIGHT SIDE -->
<div class="donate-box">
<h2>
Donate Excess Food
</h2>
<p>
Help reduce food waste by donating
extra food to NGOs and shelters.
</p>
<form id="donationForm">
<input type="text"
name="food"
placeholder="Food Name"
required>
<input type="number"
name="quantity"
placeholder="Quantity"
min="1"
required>
<input type="text"
name="address"
placeholder="Pickup Address"
required>
<button type="submit">
Submit Donation
</button>
</form>
</div>
</section>
<footer>
<div class="footer-logo">
<img src="images/logo.png" class="footer-logo-img">
<div>
<h2>
<span class="feed">Feed</span><span class="loop-text">Loop</span>
<span class="ai">AI</span>
</h2>
<p class="footer-tagline">
Smart Technology for Zero Food Waste
</p>
</div>
</div>
<p>
AI-powered food redistribution platform connecting restaurants,
hostels and households with NGOs.
</p>
<br>
<p>
Driven by technology. Inspired by sustainability.
Committed to zero food waste.
</p>
<br>
<p>
© 2026 FeedLoop AI • All Rights Reserved.
</p>
</footer>
<!-- Custom Success Modal -->
<div id="successModal" class="modal-overlay">
<div class="modal-content">
<div class="modal-icon">✔</div>
<h3>Thank You!</h3>
<p>Your donation has been submitted successfully. We have matched you with a nearby NGO.</p>
<button id="closeModalBtn" class="modal-btn">Done</button>
</div>
</div>
<script type="module" src="js/script.js"></script>
<script src="js/theme.js"></script>
</body>
</html>