-
Notifications
You must be signed in to change notification settings - Fork 258
/
resume.html
415 lines (364 loc) · 16.3 KB
/
resume.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Resume</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="Resume.css">
</head>
<body>
<!-- header section starts -->
<!-- header section starts -->
<header>
<!-- <input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label> -->
<a href="#" class="logo">Resum Resume<span>.</span></a>
<nav class="navbar">
<a href="#home">Home</a>
<a href="about.html">About</a>
<a href="resume.html">Build Resume</a>
<a href="RateMyResume.html">RateMyResume</a>
<!-- <a href="signup.html">Sign Up</a> -->
<!-- <a href="login.html">Login</a> -->
</nav>
<div class="auth-and-theme">
<!-- Login/Signup dynamically added, adding JS below, you can see -->
<div id="auth-links">
<a href="signup.html" id="signup-link">Sign Up</a>
<a href="login.html" id="login-link">Login</a>
</div>
<!-- Hamburger menu for small screens -->
<div class="hamburger">
<input type="checkbox" id="menu-toggle" class="menu-toggle">
<label for="menu-toggle" class="fas fa-bars menu-icon"></label>
</div>
<!-- Dark mode toggle, better in last of nav -->
<div class="dark-mod">
<input type="checkbox" name="" id="toggler" class="dark-mode-toggle">
<label for="toggler" class="fas fa-moon theme-mode"></label>
</div>
</div>
</header>
<nav class="mobile-navbar">
<div class="main-links">
<a href="#home">Home</a>
<a href="about.html">About</a>
<a href="resume.html">Build Resume</a>
</div>
<div class="auth-links">
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</div>
</nav>
<script>
// Get the menu toggle checkbox and mobile navbar elements
const menuToggle = document.getElementById('menu-toggle');
const mobileNavbar = document.querySelector('.mobile-navbar');
// Event listener to show/hide mobile navbar based on checkbox state
menuToggle.addEventListener('change', function () {
if (this.checked) {
mobileNavbar.style.transform = 'translateY(0)'; // Slide down into view
} else {
mobileNavbar.style.transform = 'translateY(-100%)'; // Slide up out of view
}
});
</script>
<script>
document.getElementById('toggler').addEventListener('change', function () {
// document.body.classList.toggle('dark-mode-toggle', this.checked);
// Change icon between darl and light
const icon = document.querySelector('.theme-mode');
if (this.checked) {
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
} else {
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
}
});
</script>
<style>
body {
padding: 0;
}
header {
position: relative;
}
footer {
margin-top: 5rem;
}
</style>
<!-- header section ends -->
<!-- hero section start -->
<div class="herosection">
<div class="herocontent">
<h1>Build Your Perfect Resume in Just 3 Simple Steps!</h1>
<p>Effortlessly create a professional resume that stands out!</p>
</div>
<div class="herostep">
<div class="one heros">
<i class="fa-solid fa-keyboard"></i>
<h2>Fill Your Info /<br>Upload LinkedIn Profile</h2>
</div>
<i class="fa-solid fa-chevron-right"></i>
<div class="two heros">
<i class="fa-solid fa-clipboard-list"></i>
<h2>Choose Your Template</h2>
</div>
<i class="fa-solid fa-chevron-right"></i>
<div class="three heros">
<i class="fa-solid fa-download"></i>
<h2>Review and Download</h2>
</div>
</div>
<div class="herobtn">
<div class="button" id="manulbtn">Build Resume Manually</div>
<div class="button" id="autobtn">Build Resume Automatically</div>
</div>
</div>
<!-- hero section ends -->
<div class="panel1">
<!-- progress bar section -->
<div class="progressSec">
<div class="progress-bar">
<div class="step step1p active">
<span class="circle">1</span>
<span class="label">Step 1</span>
</div>
<div class="line line1"></div>
<div class="step step2p">
<span class="circle">2</span>
<span class="label">Step 2</span>
</div>
<div class="line line2"></div>
<div class="step step3p">
<span class="circle">3</span>
<span class="label">Step 3</span>
</div>
</div>
</div>
<!-- main section start -->
<div class="form-container">
<h2>Fill Your Information</h2>
<!-- Personal Information -->
<div class="section" id="personal-info">
<h3>Personal Information <i id="caret1" class="fa-solid fa-caret-down"></i></h3>
<div class="pInfo">
<div class="pInfoLeft">
<label>Name:</label>
<input type="text" id="name" placeholder="Enter your name">
<label>Email:</label>
<input type="email" id="email" placeholder="Enter your email">
<label>Contact Number:</label>
<input type="tel" id="contact" placeholder="Enter your contact number">
<label>Location:</label>
<input type="text" id="location" placeholder="Enter your location">
</div>
<div class="pInfoRight">
<label>Profile:</label>
<textarea id="profile" placeholder="Write about yourself"></textarea>
<p id="pinfodesc">0/150</p>
</div>
</div>
</div>
<!-- Education -->
<div class="section" id="education">
<h3>Education <i id="caret2" class="fa-solid fa-caret-down"></i></h3>
<div id="education-fields">
<div class="education-entry">
<label>Institute:</label>
<input type="text" id="institutePH" placeholder="Enter institute name">
<label>Course:</label>
<input type="text" id="coursePH" placeholder="Enter course name">
<label>Start Year:</label>
<input type="text" placeholder="Start Year">
<label>End Year:</label>
<input type="text" placeholder="End Year">
<label>Score/Grade:</label>
<input type="text" placeholder="Score/Grade">
</div>
</div>
<button type="button" id="add-education">Add Another Education</button>
</div>
<!-- Skills -->
<div class="section" id="skills">
<h3>Skills <i id="caret3" class="fa-solid fa-caret-down"></i></h3>
<label id="skill-label">Skills (Comma Separated) :</label>
<input type="text" id="skillsinput" placeholder="e.g., C, C++, Python">
</div>
<!-- Experience -->
<div class="section" id="experience">
<h3>Experience <i id="caret4" class="fa-solid fa-caret-down"></i></h3>
<div id="experience-fields">
<div class="experience-entry">
<div class="expLeft">
<label>Job Position:</label>
<input type="text" id="jobrolePH" placeholder="Enter job position">
<label>Company Name:</label>
<input type="text" placeholder="Enter company name">
<label>Start Year:</label>
<input type="text" placeholder="Start Year">
<label>End Year:</label>
<input type="text" placeholder="End Year">
</div>
<div class="expRight">
<label>Description:</label>
<textarea id="expdes" placeholder="Describe your job experience"></textarea>
<p id="expdesc"></p>
</div>
</div>
</div>
<button type="button" id="add-experience">Add Another Job</button>
</div>
<!-- Achievements and Certifications -->
<div class="section" id="achievements">
<h3>Achievements and Certifications <i id="caret5" class="fa-solid fa-caret-down"></i></h3>
<div class="achive">
<div class="achive-entry">
<div class="achiveLeft">
<label>Heading:</label>
<input type="text" placeholder="e.g., Best Employee of the Year">
</div>
<div class="achiveRight">
<label>Description:</label>
<textarea id="achivedes" placeholder="Describe your achievement or certification"></textarea>
<p id="achivedesc"></p>
</div>
</div>
</div>
<button type="button" id="add-achivement">Add Another Achievement</button>
</div>
<!-- Projects (Optional) -->
<div class="section" id="projects">
<h3>Projects (Optional) <i id="caret6" class="fa-solid fa-caret-down"></i></h3>
<div id="project-fields">
<div class="project-entry">
<div class="projectLeft">
<label>Project Title:</label>
<input type="text" placeholder="Enter project title">
<label>Role/Responsibilities:</label>
<textarea placeholder="Describe your role"></textarea>
<label>Link (Optional):</label>
<input type="url" placeholder="Enter project link">
</div>
<div class="projectRight">
<label>Description:</label>
<textarea id="projectdesc" placeholder="Describe the project"></textarea>
<p id="projdesc"></p>
</div>
</div>
</div>
<button type="button" id="add-project">Add Another Project</button>
</div>
<!-- Languages (Optional) -->
<div class="section" id="languages">
<h3>Languages (Optional) <i id="caret7" class="fa-solid fa-caret-down"></i></h3>
<label id="langlabel">Languages (Comma Separated):</label>
<input type="text" id="languages-input" placeholder="e.g., English, Hindi, French">
</div>
<!-- Buttons -->
<div class="buttons step1btns">
<p id="limitwarning"><strong>Warning:</strong> Your description is over the character limit. Please modify it before moving to the next step.</p>
<button type="button" id="next-step" onclick="proceedToNextStep(2)">Next Step</button>
<button type="button" id="dummy1" >Next Step</button>
</div>
</div>
<!-- Step 2: Template Selection Section -->
<div id="step-2" class="step-section" style="display: none;">
<h2>Select a Resume Template</h2>
<div class="template-section">
<div id="basic" class="template-card" onclick="selectTemplate('basic')">
<img src="templates/basic.jpg" alt="Basic Template">
<p>Basic</p>
</div>
<div id="classic" class="template-card" onclick="selectTemplate('classic')">
<img src="templates/classic.jpg" alt="Classic Template">
<p>Classic</p>
</div>
<div id="modern" class="template-card" onclick="selectTemplate('modern')">
<img src="templates/modern.jpg" alt="Modern Template">
<p>Modern</p>
</div>
</div>
<!-- Navigation Buttons -->
<div class="buttons">
<button id="prev-step-2" onclick="showStep(1)">Prev Step</button>
<button id="next-step-2" onclick="proceedToNextStep(3)">Next Step</button>
</div>
</div>
<!-- Step 3: Review and Finalize Resume -->
<div class="step-section" id="step-3" style="display: none;">
<h2>Review Your Resume</h2>
<div id="resume-display">
<!-- Generated resume will be displayed here -->
</div>
<button id="prev-step-3">Edit Previous Steps</button>
<button id="download-resume">Download Resume</button>
</div>
<h2>Review Your Resume</h2>
<div id="resume-display">
<!-- Generated resume will be displayed here -->
</div>
<button id="prev-step-3">Edit Previous Steps</button>
<button id="download-resume">Download Resume</button>
</div>
</div>
<div class="panel2">
<h1>This feature is Currently in Working.</h1>
<p>Till then you can use our Manual feature.</p>
</div>
<!-- footer section start -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<ul>
<li><a href="#">Our Story</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul>
<li><a href="#">Resume Builder</a></li>
<li><a href="cv.html">CV Templates</a></li>
<li><a href="#">Career Advice</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Support</h3>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Resume Builder. All rights reserved.</p>
</div>
</footer>
<!-- jQuery library -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- jQuery UI library -->
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.3/html2pdf.bundle.min.js"></script>
<script src="Resume.js"></script>
<script src="resume2.js"></script>
</body>
</html>