-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.html
More file actions
649 lines (563 loc) · 20.9 KB
/
Copy pathrequest.html
File metadata and controls
649 lines (563 loc) · 20.9 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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Request a refurbished computer from CDAC. We provide equipment to students, job seekers, and community organizations in the Charlotte area.">
<title>Request a Device | Carolina Digital Access Coalition</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
color: #2c3e50;
background: #ffffff;
}
.top-bar {
background: #1a4d2e;
color: white;
padding: 10px 0;
font-size: 14px;
}
.top-bar .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 30px;
display: flex;
justify-content: space-between;
align-items: center;
}
.top-bar a {
color: white;
text-decoration: none;
margin-left: 20px;
}
.top-bar a:hover {
text-decoration: underline;
}
header {
background: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.header-content {
max-width: 1200px;
margin: 0 auto;
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-area {
display: flex;
align-items: center;
gap: 15px;
}
.logo {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: white;
font-size: 24px;
}
.org-name {
display: flex;
flex-direction: column;
}
.org-name h1 {
font-size: 20px;
font-weight: 600;
color: #1a4d2e;
margin-bottom: 2px;
}
.org-name .tagline {
font-size: 12px;
color: #6c757d;
font-weight: 400;
}
nav ul {
list-style: none;
display: flex;
gap: 30px;
}
nav a {
color: #2c3e50;
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: color 0.3s;
}
nav a:hover {
color: #1a4d2e;
}
.page-hero {
background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
color: white;
padding: 60px 30px;
text-align: center;
}
.page-hero h2 {
font-family: 'Lora', serif;
font-size: 42px;
font-weight: 600;
margin-bottom: 15px;
}
.page-hero p {
font-size: 18px;
opacity: 0.95;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 30px;
}
.main-content {
padding: 70px 30px;
}
.content-section {
max-width: 900px;
margin: 0 auto 50px;
}
.content-section h3 {
font-family: 'Lora', serif;
font-size: 28px;
color: #1a4d2e;
margin-bottom: 20px;
}
.content-section p {
font-size: 16px;
line-height: 1.8;
margin-bottom: 15px;
}
.info-box {
background: #e8f5e9;
border-left: 5px solid #1a4d2e;
padding: 25px;
margin: 30px 0;
border-radius: 4px;
}
.info-box h4 {
color: #1a4d2e;
font-size: 20px;
margin-bottom: 15px;
}
.info-box p {
margin-bottom: 10px;
}
.eligibility-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 40px 0;
}
.eligibility-card {
background: white;
border: 2px solid #e9ecef;
border-radius: 8px;
padding: 25px;
transition: all 0.3s;
}
.eligibility-card:hover {
border-color: #1a4d2e;
box-shadow: 0 5px 20px rgba(26, 77, 46, 0.1);
}
.eligibility-card h4 {
color: #1a4d2e;
font-size: 20px;
margin-bottom: 15px;
}
.eligibility-card ul {
list-style: none;
padding-left: 0;
}
.eligibility-card li {
padding: 8px 0;
padding-left: 25px;
position: relative;
font-size: 15px;
}
.eligibility-card li:before {
content: "✓";
position: absolute;
left: 0;
color: #1a4d2e;
font-weight: 700;
}
.device-types {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 30px 0;
}
.device-type {
background: #f8f9fa;
border-radius: 8px;
padding: 25px;
text-align: center;
}
.device-type h5 {
color: #1a4d2e;
font-size: 18px;
margin-bottom: 10px;
}
.device-type p {
font-size: 14px;
color: #6c757d;
margin: 0;
}
.request-steps {
background: #f8f9fa;
border-radius: 8px;
padding: 40px;
margin: 40px 0;
}
.request-steps h4 {
font-family: 'Lora', serif;
color: #1a4d2e;
font-size: 24px;
margin-bottom: 25px;
text-align: center;
}
.step-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
align-items: flex-start;
}
.step-item:last-child {
margin-bottom: 0;
}
.step-number {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}
.step-content h5 {
color: #1a4d2e;
font-size: 18px;
margin-bottom: 8px;
}
.step-content p {
font-size: 15px;
color: #6c757d;
margin: 0;
}
.availability-notice {
background: #fff3cd;
border-left: 5px solid #ff8000;
padding: 25px;
margin: 30px 0;
border-radius: 4px;
}
.availability-notice h4 {
color: #856404;
font-size: 18px;
margin-bottom: 10px;
}
.cta-section {
background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 100%);
color: white;
padding: 60px 30px;
text-align: center;
margin-top: 50px;
}
.cta-section h3 {
font-family: 'Lora', serif;
font-size: 32px;
margin-bottom: 20px;
}
.cta-section p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
}
.cta-button {
display: inline-block;
background: white;
color: #1a4d2e;
padding: 14px 32px;
text-decoration: none;
font-weight: 600;
border-radius: 6px;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
font-size: 16px;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
footer {
background: #2c3e50;
color: white;
padding: 50px 30px 30px;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}
.footer-section h4 {
font-size: 18px;
margin-bottom: 15px;
color: white;
}
.footer-section p,
.footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 14px;
line-height: 2;
}
.footer-section a:hover {
color: white;
}
.footer-bottom {
max-width: 1200px;
margin: 0 auto;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
text-align: center;
font-size: 14px;
color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 20px;
}
nav ul {
flex-direction: column;
gap: 10px;
text-align: center;
}
.page-hero h2 {
font-size: 32px;
}
.top-bar .container {
flex-direction: column;
gap: 10px;
text-align: center;
}
}
</style>
</head>
<body>
<div class="top-bar">
<div class="container">
<div>📧 CDAC@consultant.com | 📞 (828) 351-9771</div>
<div>
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="donate.html">Donate</a>
</div>
</div>
</div>
<header>
<div class="header-content">
<div class="logo-area">
<div class="logo">CD</div>
<div class="org-name">
<h1>Carolina Digital Access Coalition</h1>
<span class="tagline">Bridging the Digital Divide</span>
</div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#impact">Impact</a></li>
<li><a href="donate.html">Donate Equipment</a></li>
<li><a href="request.html">Request Device</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="page-hero">
<div class="container">
<h2>Request a Device</h2>
<p>Access to technology should not be a barrier to learning and growth</p>
</div>
</section>
<section class="main-content">
<div class="container">
<div class="content-section">
<h3>Who Can Request Equipment?</h3>
<p>We periodically have refurbished devices available for students, low-income individuals, community organizations, and educational programs. Availability varies based on donations, but we work hard to match equipment with those who need it most.</p>
<div class="eligibility-grid">
<div class="eligibility-card">
<h4>Students</h4>
<ul>
<li>K through 12 students from low-income families</li>
<li>College students with financial need</li>
<li>Adult learners returning to education</li>
<li>Homeschool families</li>
</ul>
</div>
<div class="eligibility-card">
<h4>Organizations</h4>
<ul>
<li>Community learning centers</li>
<li>Nonprofit programs</li>
<li>Job training initiatives</li>
<li>Public libraries</li>
<li>Community centers</li>
</ul>
</div>
<div class="eligibility-card">
<h4>Individuals</h4>
<ul>
<li>Job seekers needing computer access</li>
<li>Low-income families</li>
<li>Seniors learning technology</li>
<li>People transitioning out of difficult situations</li>
</ul>
</div>
</div>
</div>
<div class="content-section">
<h3>Available Device Types</h3>
<p>The equipment we have available changes frequently based on donations. Typical devices include:</p>
<div class="device-types">
<div class="device-type">
<h5>Laptops</h5>
<p>Business-class ThinkPads, Dell Latitudes, and HP EliteBooks with Linux or Windows</p>
</div>
<div class="device-type">
<h5>Desktops</h5>
<p>OptiPlex, ThinkCentre, and similar business systems with monitors</p>
</div>
<div class="device-type">
<h5>Peripherals</h5>
<p>Monitors, keyboards, mice, and other accessories as available</p>
</div>
</div>
</div>
<div class="content-section">
<div class="availability-notice">
<h4>Important: Availability Information</h4>
<p>Device availability is entirely dependent on donations we receive. We cannot guarantee specific models, specifications, or timeframes. However, we will work with you to find the best available match for your needs when equipment becomes available.</p>
</div>
</div>
<div class="content-section">
<div class="request-steps">
<h4>How to Request a Device</h4>
<div class="step-item">
<div class="step-number">1</div>
<div class="step-content">
<h5>Contact Us</h5>
<p>Email us at CDAC@consultant.com with a brief description of your situation and technology needs.</p>
</div>
</div>
<div class="step-item">
<div class="step-number">2</div>
<div class="step-content">
<h5>Provide Information</h5>
<p>We will ask for basic information about your circumstances, intended use, and any specific requirements.</p>
</div>
</div>
<div class="step-item">
<div class="step-number">3</div>
<div class="step-content">
<h5>Wait for Availability</h5>
<p>We will notify you when suitable equipment becomes available. This may take several weeks depending on donations.</p>
</div>
</div>
<div class="step-item">
<div class="step-number">4</div>
<div class="step-content">
<h5>Coordinate Pickup or Delivery</h5>
<p>Once matched with a device, we will arrange for pickup in the Charlotte area or discuss shipping options.</p>
</div>
</div>
</div>
</div>
<div class="content-section">
<div class="info-box">
<h4>What is Included</h4>
<p>All devices we provide have been:</p>
<ul style="margin-left: 25px; margin-top: 10px;">
<li>Securely wiped and tested</li>
<li>Equipped with a fresh operating system (typically Xubuntu Linux or Windows when licensed)</li>
<li>Verified to be in working condition</li>
<li>Provided with power adapters and basic peripherals when available</li>
</ul>
<p style="margin-top: 15px;"><strong>Please note:</strong> Devices are provided as-is without warranty. While we test everything thoroughly, older refurbished equipment may have cosmetic wear and limited remaining lifespan.</p>
</div>
</div>
<div class="content-section">
<h3>Information to Include in Your Request</h3>
<p>To help us match you with appropriate equipment, please include:</p>
<ul style="margin-left: 25px; margin-top: 15px; margin-bottom: 15px;">
<li>Your location (Charlotte area or broader region)</li>
<li>Primary intended use (education, job search, general computing)</li>
<li>Whether you are requesting for yourself, your family, or an organization</li>
<li>Any specific requirements (portability, certain software needs, etc.)</li>
<li>Brief explanation of your circumstances or need</li>
</ul>
<p>We respect your privacy and only ask for information necessary to effectively distribute equipment to those who need it most.</p>
</div>
</div>
</section>
<section class="cta-section">
<div class="container">
<h3>Ready to Request a Device?</h3>
<p>Contact us with your technology needs and we will work to help when equipment becomes available.</p>
<a href="contact.html" class="cta-button">Submit a Request</a>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>Carolina Digital Access Coalition</h4>
<p>A volunteer-run initiative dedicated to bridging the digital divide in the Carolinas through equipment refurbishment and redistribution.</p>
</div>
<div class="footer-section">
<h4>Contact</h4>
<p>Email: CDAC@consultant.com<br>
Phone: (828) 351-9771<br>
Location: Charlotte, NC</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<p>
<a href="index.html">Home</a><br>
<a href="donate.html">Donate Equipment</a><br>
<a href="request.html">Request Device</a><br>
<a href="contact.html">Contact Us</a>
</p>
</div>
<div class="footer-section">
<h4>Data Security</h4>
<p>All donated drives are securely wiped using DOD 5220.22-M standards before redistribution. Your data security is our priority.</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Carolina Digital Access Coalition. Not a registered 501(c)(3). Volunteer-operated initiative. All equipment donations accepted as-is.</p>
</div>
</footer>
</body>
</html>