-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
262 lines (238 loc) · 10.6 KB
/
Copy pathabout.html
File metadata and controls
262 lines (238 loc) · 10.6 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>agapay - About</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<link rel="icon" type="image/png" href="pingu.png">
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="index.html">agapay</a></div>
<ul class="nav-links">
<li><a href="app.html">Chat</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div id="auth-section">
<button class="btn btn-primary" onclick="handleSignInClick()">Sign
In</button>
</div>
<button class="nav-toggle" onclick="toggleMobileMenu()">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<line x1="4" y1="12" x2="20" y2="12"></line>
<line x1="4" y1="6" x2="20" y2="6"></line>
<line x1="4" y1="18" x2="20" y2="18"></line>
</svg>
</button>
</nav>
<main>
<div class="banner">
<div class="banner-content">
<h1>About agapay</h1>
<p>
We are dedicated to helping you find affordable health and emergency services in your area quickly
and easily.
</p>
</div>
</div>
<section class="info-section">
<div class="info-container">
<div class="info-card">
<div class="info-icon">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</div>
<h3>Our Mission</h3>
<p>To make healthcare accessible and affordable for everyone, by providing a simple way to find the
right services in your area.</p>
</div>
<div class="info-card">
<div class="info-icon">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>
</svg>
</div>
<h3>What We Do</h3>
<p>We aggregate information from various healthcare providers and emergency services to help you
find the best options based on your needs and location.</p>
</div>
<div class="info-card">
<div class="info-icon">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<path d="M12 8v4"></path>
<path d="M12 16h.01"></path>
</svg>
</div>
<h3>How It Works</h3>
<p>Enter your ZIP code and we'll show you a list of available health and emergency services in your
area, along with their prices and ratings.</p>
</div>
</div>
</section>
<section class="contact-section">
<div class="contact-container">
<h2>Get In Touch</h2>
<p>If you have any questions or feedback, please feel free to reach out to us using the form below.</p>
<form class="contact-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" placeholder="Your name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Your email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" placeholder="Your message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</section>
<!-- Login Popup Modal -->
<div id="login-modal" class="modal" style="display: none;">
<div class="modal-content">
<span class="close-btn" onclick="closeModal()">×</span>
<h2>Sign In</h2>
<p>Create or log into an account to securely access local services.</p>
<!-- Step Indicators -->
<div class="step-indicators">
<div class="step-indicator active" id="step1-indicator">
<span class="step-number">1</span>
<span class="step-label">Email & Password</span>
</div>
<div class="step-indicator" id="step2-indicator">
<span class="step-number">2</span>
<span class="step-label">Full Name</span>
</div>
</div>
<!-- Step 1: Email and Password -->
<form class="login-form" id="step1-form" onsubmit="event.preventDefault(); handleStep1();">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="you@example.com" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="••••••••" required>
</div>
<div class="turnstile-container">
<div class="cf-turnstile" data-sitekey="0x4AAAAAACnnZimyKFulhPjw"></div>
</div>
<button type="submit" class="btn btn-primary"
style="width: 100%; margin-top: 0.5rem;">Continue</button>
</form>
<!-- Step 2: Full Name (only shown if step 1 fails) -->
<form class="login-form" id="step2-form" style="display: none;"
onsubmit="event.preventDefault(); handleStep2();">
<div class="form-group">
<label for="full-name">Full Name</label>
<input type="text" id="full-name" placeholder="John Doe" required>
</div>
<div class="turnstile-container">
<div class="cf-turnstile" data-sitekey="0x4AAAAAACnnZimyKFulhPjw"></div>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%; margin-top: 0.5rem;">Create
Account</button>
<button type="button" class="btn btn-secondary" style="width: 100%; margin-top: 0.5rem;"
onclick="goBackToStep1();">Back</button>
</form>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-content">
<div class="footer-logo">pinguverse</div>
<div class="footer-links">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">Contact Us</a>
</div>
<p class="copyright">© 2026 Pinguverse. All rights reserved.</p>
</div>
</footer>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
<script src="index.js"></script>
<style>
.contact-section {
padding: 5rem 2rem;
background-color: var(--bg-card);
display: flex;
justify-content: center;
}
.contact-container {
max-width: 800px;
width: 100%;
text-align: center;
}
.contact-container h2 {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-main);
margin-bottom: 1rem;
letter-spacing: -1px;
}
.contact-container p {
font-size: 1.125rem;
color: var(--text-muted);
margin-bottom: 3rem;
line-height: 1.6;
}
.contact-form {
text-align: left;
background: var(--bg-main);
padding: 2.5rem;
border-radius: 1rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
border: 1px solid var(--border-color);
}
.contact-form .form-group {
margin-bottom: 1.5rem;
}
.contact-form label {
display: block;
font-size: 0.875rem;
font-weight: 600;
color: var(--text-main);
margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid var(--border-color);
border-radius: 0.5rem;
font-size: 1rem;
color: var(--text-main);
background-color: var(--bg-main);
transition: border-color 0.2s ease, box-shadow 0.2s ease;
outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.contact-form textarea {
resize: vertical;
min-height: 120px;
}
.contact-form .btn-primary {
width: 100%;
margin-top: 0.5rem;
}
</style>
</body>
</html>