-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.html
More file actions
108 lines (98 loc) · 4.37 KB
/
application.html
File metadata and controls
108 lines (98 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AKBIF - Building a Legacy of Faith</title>
<link rel="stylesheet" href="application.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="logo">
<img src="logo.png" alt="AKBIF Logo">
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#project">Project</a></li>
<li><a href="#sadaqah">Sadaqah Jariyah</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#updates">Updates</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
<button class="donate-btn">Donate Now</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-content">
<h2>Join the AKBIF Foundation Team.</h2>
<h1>We’re always looking for passionate, purpose-driven <br>
individuals to help us grow our impact. If you’re <br>
committed to service, excellence, and community,<br>
we’d love to hear from you.</h1>
</div>
</section>
<div class="container form-section">
<h1>Submit Your Application</h1>
<form action="/submit-application" method="post" enctype="multipart/form-data">
<input type="text" placeholder="First Name" name="firstName" required>
<input type="text" placeholder="Last Name" name="lastName" required>
<input type="tel" placeholder="Phone Number" name="phone" required>
<input type="email" placeholder="Email" name="email" required>
<input type="text" placeholder="Address: Street" name="street" required>
<input type="text" placeholder="City/Town" name="city" required>
<input type="text" placeholder="State/Country" name="state" required>
<input type="text" placeholder="Country" name="country" required>
<select name="position" required>
<option value="" disabled selected>Position/Role</option>
<option value="Fundraising Ambassador">Fundraising Ambassador</option>
<option value="Skilled Labour">Skilled Labour</option>
<option value="Content Creator">Content Creator & Social Media Manager</option>
</select>
<div class="file-input-container">
<label>Resume</label>
<input type="file" name="resume" required>
</div>
<input type="submit" value="Submit">
</form>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>JOIN US IN BUILDING A LEGACY OF FAITH</h3>
<button class="cta-btn-footer" style="margin-top: 1rem;">Donate Now</button>
</div>
<div class="footer-section">
<h3>Organization</h3>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#story">Our Story</a></li>
<li><a href="#sadaqah">Sadaqah Jariyah</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Links</h3>
<ul>
<li><a href="#media">Media</a></li>
<li><a href="#policies">Policies</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>info@akbifoundation.org.ng</p>
<p>Ibadan, Lagos State, Nigeria</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 AKBIF. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>