-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccess-request.html
More file actions
231 lines (211 loc) · 14.4 KB
/
access-request.html
File metadata and controls
231 lines (211 loc) · 14.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Request - Cloud DevOps Labs</title>
<!-- Content Security Policy -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com; font-src https://cdnjs.cloudflare.com; img-src 'self' https://images.credly.com data:; connect-src https://api.github.com">
<!-- Open Graph meta tags -->
<meta property="og:title" content="Access Request - Cloud DevOps Labs">
<meta property="og:description" content="Request access to private Cloud DevOps lab repositories (100-400 level)">
<meta property="og:url" content="https://gamaware.github.io/cloud-devops-labs-index/access-request.html">
<meta property="og:type" content="website">
<!-- Canonical URL -->
<link rel="canonical" href="https://gamaware.github.io/cloud-devops-labs-index/access-request.html">
<!-- Preconnect hints -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<!-- Font Awesome with SRI -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3HjDXM6+AOJyxQ2TDhmYQBFR/GIZqiAp+QXtfS+I3GhZw==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Skip Navigation Link -->
<a href="#main-content" class="skip-link" data-i18n="skipToContent">Skip to main content</a>
<!-- Navbar -->
<nav class="navbar" role="navigation" aria-label="Main navigation">
<div class="navbar__container">
<a href="index.html" class="navbar__brand">Alex Garcia</a>
<button class="navbar__toggle" aria-expanded="false" aria-controls="nav-menu" aria-label="Toggle navigation">
<span class="navbar__toggle-icon"></span>
</button>
<div class="navbar__menu" id="nav-menu" role="menubar">
<a href="index.html#about" data-i18n="nav.about">About</a>
<a href="index.html#experience" data-i18n="nav.experience">Experience</a>
<a href="index.html#certifications" data-i18n="nav.certifications">Certifications</a>
<a href="index.html#labs" data-i18n="nav.labs">Labs</a>
<a href="index.html#skills" data-i18n="nav.skills">Skills</a>
<a href="index.html#contact" data-i18n="nav.contact">Contact</a>
<a href="learning-resources.html" data-i18n="nav.resources">Resources</a>
<a href="access-request.html" data-i18n="nav.accessRequest">Access Request</a>
<button class="navbar__theme-toggle" aria-label="Toggle theme" onclick="ThemeEngine.toggle()">
<i class="fas fa-moon"></i>
</button>
<div class="navbar__lang-selector">
<button class="navbar__lang-btn" data-lang="en" onclick="LocaleEngine.setLocale('en')">EN</button>
<button class="navbar__lang-btn" data-lang="es" onclick="LocaleEngine.setLocale('es')">ES</button>
<button class="navbar__lang-btn" data-lang="pt" onclick="LocaleEngine.setLocale('pt')">PT</button>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<main id="main-content">
<!-- Access Request Section -->
<section id="access-request" class="section animate-on-scroll">
<div class="container">
<h2 class="section__title" data-i18n="request.heading">Repository Access Request</h2>
<p class="section-intro" data-i18n="request.intro">This repository is private. Please fill out the form below to request access.</p>
<div class="access-form">
<form id="access-form">
<div class="form-group">
<label class="form-label" for="name" data-i18n="form.nameLabel">Full Name</label>
<input class="form-input" type="text" id="name" name="name" required aria-describedby="name-error">
<span class="form-error" id="name-error" role="alert"></span>
</div>
<div class="form-group">
<label class="form-label" for="email" data-i18n="form.emailLabel">Email Address</label>
<input class="form-input" type="email" id="email" name="email" required aria-describedby="email-error">
<span class="form-error" id="email-error" role="alert"></span>
</div>
<div class="form-group">
<label class="form-label" for="github" data-i18n="form.githubLabel">GitHub Username</label>
<input class="form-input" type="text" id="github" name="github" required aria-describedby="github-error">
<span class="form-error" id="github-error" role="alert"></span>
</div>
<div class="form-group">
<label class="form-label" for="repo" data-i18n="form.repoLabel">Repository</label>
<select class="form-select" id="repo" name="repo" required aria-describedby="repo-error">
<option value="" data-i18n="form.selectRepo">-- Select Repository --</option>
<option value="cloud-devops-labs-100">Cloud DevOps Labs 100</option>
<option value="cloud-devops-labs-200">Cloud DevOps Labs 200</option>
<option value="cloud-devops-labs-300">Cloud DevOps Labs 300</option>
<option value="cloud-devops-labs-400">Cloud DevOps Labs 400</option>
</select>
<span class="form-error" id="repo-error" role="alert"></span>
</div>
<div class="form-group">
<label class="form-label" for="reason" data-i18n="form.reasonLabel">Reason for Access</label>
<select class="form-select" id="reason" name="reason" required aria-describedby="reason-error">
<option value="" data-i18n="form.selectReason">-- Select Reason --</option>
<option value="Student - Spring 2025">Student - Spring 2025</option>
<option value="Student - Fall 2025">Student - Fall 2025</option>
<option value="Discord Server Member">Discord Server Member</option>
<option value="Industry Professional">Industry Professional</option>
<option value="Academic Researcher">Academic Researcher</option>
<option value="AWS Community Builder">AWS Community Builder</option>
</select>
<span class="form-error" id="reason-error" role="alert"></span>
</div>
<div style="text-align: center;">
<button type="submit" class="btn btn--primary" id="submit-btn" data-i18n="form.submitBtn">Submit Request</button>
</div>
</form>
<div id="success-message" style="display: none; text-align: center; margin-top: var(--space-lg);">
<i class="fas fa-check-circle" style="color: #28a745; font-size: 3rem;"></i>
<p style="margin-top: var(--space-md); font-size: var(--font-size-lg);" data-i18n="form.thankYou">Thank you! Your access request has been submitted.</p>
<p style="margin-top: var(--space-sm);" data-i18n="form.issueCreated">A GitHub issue has been created for your request. You'll receive an email notification when access is granted.</p>
</div>
<p id="error-message" class="form-error" style="display: none; text-align: center; margin-top: var(--space-md);"></p>
</div>
<a href="index.html" class="back-link" data-i18n="form.backLink">← Back to Home</a>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p data-i18n="footer.copyright">© 2025 Alex Garcia. All rights reserved.</p>
<p class="footer__disclaimer" data-i18n="footer.disclaimer">Disclaimer: All views and opinions expressed on this website and in my GitHub repositories are <span class="highlight">my own</span> and do <span class="highlight">not represent</span> the opinions of my employer.</p>
<p style="font-style: italic; margin-top: var(--space-md); font-size: var(--font-size-xs); letter-spacing: 2px; opacity: 0.8;" data-i18n="footer.carpeDiem">Carpe Diem</p>
</div>
</footer>
<!-- Page-specific translations (must come BEFORE main.js) -->
<script>
const PAGE_TRANSLATIONS = {
en: {
"skipToContent": "Skip to main content",
"nav.about": "About",
"nav.experience": "Experience",
"nav.certifications": "Certifications",
"nav.labs": "Labs",
"nav.skills": "Skills",
"nav.contact": "Contact",
"nav.resources": "Resources",
"nav.accessRequest": "Access Request",
"request.heading": "Repository Access Request",
"request.intro": "This repository is private. Please fill out the form below to request access.",
"form.nameLabel": "Full Name",
"form.emailLabel": "Email Address",
"form.githubLabel": "GitHub Username",
"form.repoLabel": "Repository",
"form.selectRepo": "-- Select Repository --",
"form.reasonLabel": "Reason for Access",
"form.selectReason": "-- Select Reason --",
"form.submitBtn": "Submit Request",
"form.thankYou": "Thank you! Your access request has been submitted.",
"form.issueCreated": "A GitHub issue has been created for your request. You'll receive an email notification when access is granted.",
"form.backLink": "← Back to Home",
"footer.copyright": "© 2025 Alex Garcia. All rights reserved.",
"footer.disclaimer": "Disclaimer: All views and opinions expressed on this website and in my GitHub repositories are my own and do not represent the opinions of my employer.",
"footer.carpeDiem": "Carpe Diem"
},
es: {
"skipToContent": "Saltar al contenido principal",
"nav.about": "Sobre Mí",
"nav.experience": "Experiencia",
"nav.certifications": "Certificaciones",
"nav.labs": "Laboratorios",
"nav.skills": "Habilidades",
"nav.contact": "Contacto",
"nav.resources": "Recursos",
"nav.accessRequest": "Solicitar Acceso",
"request.heading": "Solicitud de Acceso al Repositorio",
"request.intro": "Este repositorio es privado. Por favor complete el formulario a continuación para solicitar acceso.",
"form.nameLabel": "Nombre Completo",
"form.emailLabel": "Correo Electrónico",
"form.githubLabel": "Nombre de Usuario de GitHub",
"form.repoLabel": "Repositorio",
"form.selectRepo": "-- Seleccionar Repositorio --",
"form.reasonLabel": "Motivo de Acceso",
"form.selectReason": "-- Seleccionar Motivo --",
"form.submitBtn": "Enviar Solicitud",
"form.thankYou": "¡Gracias! Su solicitud de acceso ha sido enviada.",
"form.issueCreated": "Se ha creado un issue en GitHub para su solicitud. Recibirá una notificación por correo electrónico cuando se le otorgue acceso.",
"form.backLink": "← Volver al Inicio",
"footer.copyright": "© 2025 Alex Garcia. Todos los derechos reservados.",
"footer.disclaimer": "Aviso: Todas las opiniones expresadas en este sitio web y en mis repositorios de GitHub son mías y no representan las opiniones de mi empleador.",
"footer.carpeDiem": "Carpe Diem"
},
pt: {
"skipToContent": "Pular para o conteúdo principal",
"nav.about": "Sobre Mim",
"nav.experience": "Experiência",
"nav.certifications": "Certificações",
"nav.labs": "Laboratórios",
"nav.skills": "Habilidades",
"nav.contact": "Contato",
"nav.resources": "Recursos",
"nav.accessRequest": "Solicitar Acesso",
"request.heading": "Solicitação de Acesso ao Repositório",
"request.intro": "Este repositório é privado. Por favor, preencha o formulário abaixo para solicitar acesso.",
"form.nameLabel": "Nome Completo",
"form.emailLabel": "Endereço de Email",
"form.githubLabel": "Nome de Usuário do GitHub",
"form.repoLabel": "Repositório",
"form.selectRepo": "-- Selecionar Repositório --",
"form.reasonLabel": "Motivo do Acesso",
"form.selectReason": "-- Selecionar Motivo --",
"form.submitBtn": "Enviar Solicitação",
"form.thankYou": "Obrigado! Sua solicitação de acesso foi enviada.",
"form.issueCreated": "Um issue foi criado no GitHub para sua solicitação. Você receberá uma notificação por e-mail quando o acesso for concedido.",
"form.backLink": "← Voltar para a Página Inicial",
"footer.copyright": "© 2025 Alex Garcia. Todos os direitos reservados.",
"footer.disclaimer": "Aviso: Todas as opiniões expressas neste site e nos meus repositórios GitHub são minhas e não representam as opiniões do meu empregador.",
"footer.carpeDiem": "Carpe Diem"
}
};
</script>
<script src="main.js" defer></script>
</body>
</html>