-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
287 lines (258 loc) · 16.8 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frissco Online Applicant Registration</title>
<link rel="stylesheet" href="styles.css">
<!-- Search Engine Optimization - SEO -->
<title>F.O.A.R - Frissco Online Applicant Registration</title>
<!-- Meta Description: Brief summary of your page (between 150-160 characters) -->
<meta name="description"
content="F.O.A.R is a method to apply to work on Frissco Media Group, A startup company containing a IT and Media Production Unit together. Takes freelancing orders from clients all around the world.">
<!-- Meta Keywords: Not as important for SEO anymore but can be used -->
<meta name="keywords" content="Frissco Media Group, FOAR, Frissco, Sidharth Prabhu, Sidharth P.L">
<!-- Meta Author: The author of the site -->
<meta name="author" content="Frissco Creative Labs">
<!-- Open Graph (OG) Tags for better social media sharing -->
<meta property="og:title" content="F.O.A.R - Frissco Online Applicant Registration">
<meta property="og:description"
content="F.O.A.R is a method to apply to work on Frissco Media Group, A startup company containing a IT and Media Production Unit together. Takes freelancing orders from clients all around the world.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://foarapplication.netlify.app">
<!-- <meta property="og:image" content="/branding/fulltransparent.png"> -->
<!-- Twitter Card for better link sharing on Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="F.O.A.R - Frissco Online Applicant Registration">
<meta name="twitter:description"
content="F.O.A.R is a method to apply to work on Frissco Media Group, A startup company containing a IT and Media Production Unit together. Takes freelancing orders from clients all around the world.">
<!-- <meta name="twitter:image" content="/branding/fulltransparent.png"> -->
<!-- Canonical URL to avoid duplicate content issues -->
<!-- <link rel="canonical" href="https://www.yoursite.com/your-page"> -->
<!-- Robots Meta Tag to control search engine crawling -->
<!-- <meta name="robots" content="index, follow"> -->
<!-- Link to CSS stylesheet -->
<!-- <link rel="stylesheet" href="styles.css"> -->
</head>
<body>
<div class="form-container">
<!-- Logo Section -->
<div class="logo-container">
<img src="logo.png" alt="Frissco Logo" class="logo">
</div>
<!-- Form Title -->
<h1 class="form-title">F.O.A.R Application Form (2025)</h1>
<form id="application-form" action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="your_access_key" />
<input type="hidden" name="subject" value="New application for F.O.A.R">
<input type="hidden" name="from_name" value="Frissco Online Applicant Registration">
<input type="hidden" name="replyto" value="[email protected]">
<input type="checkbox" name="botcheck" class="hidden" style="display: none;">
<input type="hidden" name="redirect" value="https://foarapplication.netlify.app/submission">
<!-- Step 1: Name -->
<div class="form-step active">
<h2>What is your name?</h2>
<input type="text" name="Name" placeholder="Name" required>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 2: Email -->
<div class="form-step">
<h2>Enter your email address.</h2>
<input type="email" name="Email" placeholder="Email" required>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 3: Contact Number -->
<div class="form-step">
<h2>Enter your contact number.</h2>
<input type="tel" name="Contact" placeholder="Mobile Number" required>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 4: Social Media Handle -->
<div class="form-step">
<h2>Enter any of your social media handle for contacting you (Ex: Instagram, Snapchat, Facebook, X)</h2>
<input type="text" name="Social Media" placeholder="@SocialMediaHandle" required>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 5: Why Frissco -->
<div class="form-step">
<h2>Why do you want to be in Frissco?</h2>
<textarea name="Reason to be in Frissco" rows="4" placeholder="Enter a reason why you're signing up for Frissco.." required></textarea>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 6: Aim to Work in Frissco -->
<div class="form-step">
<h2>What is your aim to work in Frissco?</h2>
<textarea name="Aim to work in Frissco" rows="4" placeholder="What is your aim to work in Frissco?" required></textarea>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 7: Short Period -->
<div class="form-step">
<h2>Do you want to work in Frissco for a short term?</h2>
<div class="options">
<label>
<input type="radio" name="Work for short term" value="Yes" required> Yes
</label>
<label>
<input type="radio" name="Work for short term" value="No" required> No
</label>
</div>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 8: Select Units -->
<div class="form-step">
<h2>Select the units of Frissco you wish to work for *</h2>
<fieldset>
<label>
<input type="checkbox" name="Signed up for" value="Frissco Media Productions"> Frissco Media Productions
</label><br>
<label>
<input type="checkbox" name="Signed up for" value="Frissco Creative Labs"> Frissco Creative Labs
</label><br>
<label>
<input type="checkbox" name="Signed up for" value="Frissco Freelancing Services"> Frissco Freelancing
Services
</label><br>
<label>
<input type="checkbox" name="Signed up for" value="Frissco for Businesses"> Frissco for Businesses
</label>
</fieldset>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 9: Creative Labs Skills -->
<div class="form-step" id="creative-skills-step">
<h2>Select the skills below if you have selected Frissco Creative Labs.</h2>
<fieldset>
<legend>What are your skills?</legend>
<label><input type="checkbox" name="Creative Labs Skills" value="Python"> Python</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Java"> Java</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="C/C++"> C/C++</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Linux"> Linux</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="UI/UX Design"> UI/UX Design</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Google Firebase"> Google
Firebase</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Web Development"> Web
Development</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Kotlin"> Kotlin</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Android Studio"> Android
Studio</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Artificial Intelligence"> Artificial
Intelligence</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Visual Studio"> Visual
Studio</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="React"> React</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Flutter"> Flutter</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="SWIFT (iOS Development)"> SWIFT (iOS
Development)</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Unity"> Unity</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Unreal Engine"> Unreal
Engine</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Game Maker Studio"> Game Maker
Studio</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Hypervisor"> Hypervisor</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Autodesk Autocad"> Autodesk
Autocad</label><br>
<label><input type="checkbox" name="Creative Labs Skills" value="Other"> Other:</label>
<input type="text" name="Creative Labs other skills">
</fieldset>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 10: Media Productions Skills -->
<div class="form-step" id="media-skills-step">
<h2>Select the skills below if you have selected Frissco Media Productions.</h2>
<fieldset>
<legend>What are your skills?</legend>
<label><input type="checkbox" name="Media Production Skills" value="Adobe Premiere Pro"> Adobe Premiere
Pro</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Adobe Photoshop"> Adobe
Photoshop</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Adobe Lightroom"> Adobe
Lightroom</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Adobe After Effects"> Adobe After
Effects</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Adobe Animate"> Adobe Animate</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Adobe Illustrator"> Adobe
Illustrator</label><br>
<label><input type="checkbox" name="Media Production Skills" value="DaVinci Resolve"> DaVinci
Resolve</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Cinema 4D"> Cinema 4D</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Blender"> Blender</label><br>
<label><input type="checkbox" name="Media Production Skills" value="AVID Media Composer"> AVID Media
Composer</label><br>
<label><input type="checkbox" name="Media Production Skills" value="AVID Pro Tools"> AVID Pro Tools</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Final Cut Pro"> Final Cut Pro</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Logic Pro"> Logic Pro</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Wondershare Filmora"> Wondershare
Filmora</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Canva"> Canva</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Autodesk Maya"> Autodesk Maya</label><br>
<label><input type="checkbox" name="Media Production Skills" value="Other"> Other:</label>
<input type="text" name="Media Production other skills">
</fieldset>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 11: Additional Skills -->
<div class="form-step">
<h2>Choose additional Skills *</h2>
<fieldset>
<label><input type="checkbox" name="Additional Skills" value="Document Typing"> Document
Typing</label><br>
<label><input type="checkbox" name="Additional Skills" value="Dubbing"> Dubbing</label><br>
<label><input type="checkbox" name="Additional Skills" value="Social Media Handles"> Social Media
Handles</label><br>
<label><input type="checkbox" name="Additional Skills" value="Management"> Management</label><br>
<label><input type="checkbox" name="Additional Skills" value="Server Maintenance"> Server
Maintenance</label><br>
<label><input type="checkbox" name="Additional Skills" value="Customer Handling"> Customer
Handling</label><br>
<label><input type="checkbox" name="Additional Skills" value="Other"> Other:</label>
<input type="text" name="Other additional skills">
</fieldset>
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 12: Admins -->
<div class="form-step">
<h2>Do you know any of our admin members personally?</h2>
<select name="Admin members referal" required>
<option value="" disabled selected>Select an option</option>
<option value="Sidharth Prabhu - CEO/Founder">Sidharth Prabhu - CEO/Founder</option>
<option value="Shreyas - CIO/Co-Founder">Shreyas - CIO/Co-Founder</option>
<option value="Lokith Parthi - CMO">Lokith Parthi - CMO</option>
<option value="Kishor B - COO">Kishor B - COO</option>
<option value="Dhaarini - R&D Lead">Dhaarini - R&D Lead</option>
<option value="N/A">I'm new here</option>
</select>
<!-- <input type="text" name="admin_other" id="admin_other" placeholder="Please specify" class="hidden"> -->
<button type="button" class="prev-btn">Back</button>
<button type="button" class="next-btn">Next</button>
</div>
<!-- Step 13: Interview Method -->
<div class="form-step">
<h2>Choose a method of interview:</h2>
<select name="Interview mode" required>
<option value="" disabled selected>Select an option</option>
<option value="Online">Online</option>
<option value="Offline">Offline</option>
</select>
<button type="button" class="prev-btn">Back</button>
<button type="submit" class="submit-btn">Submit</button>
</div>
<!-- Thank You Message -->
<div class="form-step">
<h2>Thank you for applying!</h2>
<p>We have received your application and will get back to you shortly.</p>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>