generated from VCGithubCode/vernell-c-new-repo-generator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy paththank-you.html
180 lines (167 loc) · 7.65 KB
/
thank-you.html
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
<!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="Explore access granted's accessibility, inclusiveness and availability for all. Access a wide range of different functions for accessibility">
<meta name="keywords"
content="Accessible, accessibility, inclusive, inclusiveness, for everyone, a website for all">
<!-- Link head tags -->
<link rel='shortcut icon' href="assets/images/logo.webp">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>Access Granted | Thank You </title>
</head>
<body class="relative">
<a href="#main-content" class="skip-link">Skip to main content</a>
<header class="fixed-top">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo.webp" alt="Access Granted Logo" width="30" height="30"
class="d-inline-block align-top">
Access Granted
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent"
aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item mt-2">
<a class="nav-link" href="resources.html"><i class="fas fa-book"></i> Resources</a>
</li>
<li class="nav-item mt-2">
<a class="nav-link" href="about.html"><i class="fas fa-info-circle"></i> About</a>
</li>
<li class="nav-item mt-2">
<a class="nav-link" href="contact.html"><i class="fas fa-envelope"></i> Contact</a>
</li>
<li><button class="btn btn-secondary mt-2" type="button" data-bs-toggle="offcanvas"
data-bs-target="#offcanvasWithBothOptions" aria-controls="offcanvasWithBothOptions"><i
class="fas fa-universal-access"></i> Accessibility</button></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Canvas sidebar -->
<div class="offcanvas offcanvas-end" data-bs-scroll="true" tabindex="-1" id="offcanvasWithBothOptions"
aria-labelledby="offcanvasWithBothOptionsLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasWithBothOptionsLabel">Accessibility Settings</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="list-unstyled p-3">
<li class="mb-3">
<div class="dropdown-item">
<label class="form-label">Font Size</label>
<div class="d-flex flex-column">
<div class="btn-group" role="group" aria-label="Font Size">
<input type="radio" class="btn-check font-size-option" name="fontSize"
id="fontSizeSmall" value="small">
<label class="btn btn-outline-secondary" for="fontSizeSmall">Small</label>
<input type="radio" class="btn-check font-size-option" name="fontSize"
id="fontSizeMedium" value="medium" checked>
<label class="btn btn-outline-secondary" for="fontSizeMedium">Medium</label>
<input type="radio" class="btn-check font-size-option" name="fontSize"
id="fontSizeLarge" value="large">
<label class="btn btn-outline-secondary" for="fontSizeLarge">Large</label>
</div>
</div>
</div>
</li>
<li class="mb-3">
<div class="dropdown-item">
<div class="form-check form-switch form-switch-lg d-flex align-items-center">
<input class="form-check-input font-switch" type="checkbox" id="fontSwitch1"
aria-label="Font switch">
<label class="form-check-label ms-2" for="fontSwitch1">Turn on Dyslexic Font</label>
</div>
</div>
</li>
<li class="mb-3">
<div class="dropdown-item">
<div class="form-check form-switch form-switch-lg d-flex align-items-center">
<input class="form-check-input theme-switch" type="checkbox" id="themeSwitch1"
aria-label="Theme switch">
<label class="form-check-label ms-2" for="themeSwitch1">Turn on High Contrast</label>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- Back to top button -->
<a href="#" class="btn btn-primary btn-lg back-to-top position-fixed bottom-0 end-0 m-3 d-none z-3" aria-label="Back to Top">
<i class="fas fa-arrow-up"></i>
</a>
<main id="main-content" class="container-fluid vh-100 main-background d-flex flex-column justify-content-center align-items-center">
<div class="container text-center">
<h1 class="mb-4 text-dark fw-bold fs-2">Thank You!</h1>
<div class="row align-items-center justify-content-center">
<!-- Image Section -->
<div class="col-12 col-md-4 mb-3">
<img src="assets/images/letter.webp" alt="Thank You Letter Image" class="img-fluid shadow-sm rounded">
</div>
<!-- Message Section -->
<div class="col-12 col-md-6">
<div class="card bg-light p-3 rounded shadow-sm">
<div class="card-body">
<p class="text-muted fs-6">
Thank you for contacting us and for using the <strong>Access Granted</strong> web application!
We hope our platform provided you with an inclusive and helpful experience.
</p>
<p class="text-muted fs-6">
We appreciate your feedback and will review your submission shortly.
</p>
<p class="fw-bold text-secondary mb-0">Best wishes,<br>Access Granted Team</p>
</div>
</div>
</div>
</div>
</div>
</main>
<hr>
<footer class="text-muted py-5">
<div class="container footerdiv">
<div class="row">
<div class="col-md-4">
<h5>Social</h5>
<ul class="list-unstyled">
<li><a href="https://github.com/VCGithubCode/access-granted" class="text-muted" target="_blank"
rel="noopener" aria-label="Visit our github repository page(Opens in a new tab)"
aria-hidden="true"><i class="fa-brands fa-github"></i> Github</a></li>
<li><a href="https://app.slack.com/client/T0L30B202/C080JB3ETHU" class="text-muted"
target="_blank" rel="noopener" aria-label="Visit our Slack channel(Opens in a new tab)"
aria-hidden="true"><i class="fa-brands fa-slack"></i> Slack</a></li>
</ul>
</div>
<div class="col-md-4">
<h5>Site Map</h5>
<ul class="list-unstyled">
<li><a href="index.html" class="text-muted">Home</a></li>
<li><a href="resources.html" class="text-muted">Resources</a></li>
<li><a href="about.html" class="text-muted">About</a></li>
<li><a href="contact.html" class="text-muted">Contact</a></li>
</ul>
</div>
</div>
<p class="mb-1">© 2024 Access Granted Project</p>
</div>
</footer>
<!-- Fontawesome icons -->
<script src="https://kit.fontawesome.com/8f0b8db894.js" crossorigin="anonymous"></script>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom Script -->
<script src="assets/js/script.js"></script>
<!-- Theme Switcher Script -->
<script src="assets/js/theme-switcher.js"></script>
<!-- Toggle navigation bar background -->
<script src="assets/js/navbar-background-toggler.js"></script>
</body>
</html>