-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
308 lines (266 loc) · 10.5 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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Generator</title>
<!-- Bootstrap CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container mt-1 mb-2" id="resume-form">
<h3 class="header text-center pt-1 pb-2">Resume Generator</h3>
<div class="row">
<!-- Personal Details -->
<div class="col-md-6 mt-3">
<h4 class="text-decoration-underline">Personal Details</h4>
<!-- Photo -->
<div class="from-group mt-3 text-primary">
<label for="imgField">Select Your Photo</label>
<input type="file" id="imgField" class="form-control mt-1"/>
</div>
<!-- Name -->
<div class="form-group mt-3 text-primary">
<label for="nameField">Your Name:</label>
<input type="text" id="nameField" placeholder="Enter Your Name" class="form-control mt-1">
</div>
<!-- Contact Number -->
<div class="form-group mt-3 text-primary">
<label for="contactField">Contact Number:</label>
<input type="tel" id="contactField" placeholder="Enter Your Contact Number" class="form-control mt-1">
</div>
<!-- Email ID -->
<div class="form-group mt-3 text-primary">
<label for="emailField">Your Email ID:</label>
<input type="email" id="emailField" placeholder="Enter Your Email ID" class="form-control mt-1">
</div>
<!-- Address -->
<div class="form-group mt-3 text-primary">
<label for="addressField">Your Address:</label>
<textarea id="addressField" rows="1" placeholder="Enter Your Address" class="form-control mt-1"></textarea>
</div>
<h5 class="mt-4 text-muted">Important Links :-</h5>
<!-- LinkedIn -->
<div class="form-group mt-3 text-primary">
<label for="linkedinField">LinkedIn:</label>
<input type="url" id="linkedinField" placeholder="Enter the link" class="form-control mt-1">
</div>
<!-- GitHub -->
<div class="form-group mt-3 text-primary">
<label for="githubField">GitHub:</label>
<input type="url" id="githubField" placeholder="Enter the link" class="form-control mt-1">
</div>
<!-- Website / Portfolio -->
<div class="form-group mt-3 mb-3 text-primary">
<label for="websiteField">Website / Portfolio:</label>
<input type="url" id="websiteField" placeholder="Enter the link" class="form-control mt-1">
</div>
<!-- Languages -->
<div class="form-group mt-3 text-primary">
<label for="languagesField">Languages:</label>
<textarea rows="2" id="languagesField" placeholder="Enter Your Languages" class="form-control mt-1"></textarea>
</div>
<!-- Interests -->
<div class="form-group mt-3 text-primary">
<label for="interestsField">Interests:</label>
<textarea rows="2" id="interestsField" placeholder="Enter Your Interests" class="form-control mt-1"></textarea>
</div>
</div>
<!-- Professional Details -->
<div class="col-md-6 mt-3">
<h4 class="text-decoration-underline">Professional Details</h4>
<!-- Profile Summary / About You -->
<div class="form-group mt-3 text-primary">
<label for="">Profile Summary / About You:</label>
<textarea id="profileField" rows="2" placeholder="Enter Your Profile Summary" class="form-control mt-1"></textarea>
</div>
<!-- Education -->
<div class="form-group mt-3 text-primary" id="educationField">
<label for="">Education:</label>
<textarea rows="2" placeholder="Enter Your Education" class="form-control educationText mt-1"></textarea>
<!-- We will add new education textarea here -->
<div class="addBtn text-center mt-2" id="educationFieldBtn">
<button class="btn btn-info btn-sm border-dark"
onclick="addEduBtn()">Add</button>
</div>
</div>
<!-- Work Experience -->
<div class="form-group mt-3 text-primary" id="weField">
<label for="">Work Experience:</label>
<textarea rows="2" placeholder="Enter Your Work Experience" class="form-control workText mt-1"></textarea>
<!-- We will add new work experience textarea here -->
<div class="addBtn text-center mt-2" id="weFieldBtn">
<button class="btn btn-info btn-sm border-dark"
onclick="addWeBtn()">Add</button>
</div>
</div>
<!-- Projects -->
<div class="form-group mt-3 text-primary" id="projectsField">
<label for="">Projects:</label>
<textarea rows="2" placeholder="Enter Your Projects" class="form-control projectText mt-1"></textarea>
<!-- We will add new projects textarea here -->
<div class="addBtn text-center mt-2" id="projectsFieldBtn">
<button class="btn btn-info btn-sm border-dark"
onclick="addProjectsBtn()">Add</button>
</div>
</div>
<!-- Technical Skills -->
<div class="form-group mt-3 text-primary" id="TskillsField">
<label for="">Technical Skills:</label>
<textarea rows="2" placeholder="Enter Your Technical Skills" class="form-control TskillsText mt-1"></textarea>
<!-- We will add new technical skills textarea here -->
<div class="addBtn text-center mt-2" id="TskillsFieldBtn">
<button class="btn btn-info btn-sm border-dark"
onclick="addTSkillsBtn()">Add</button>
</div>
</div>
<!-- Soft Skills -->
<div class="form-group mt-3 text-primary" id="SskillsField">
<label for="">Soft Skills:</label>
<textarea rows="2" placeholder="Enter Your Soft Skills" class="form-control SskillsText mt-1"></textarea>
<!-- We will add new soft skills textarea here -->
<div class="addBtn text-center mt-2" id="SskillsFieldBtn">
<button class="btn btn-info btn-sm border-dark"
onclick="addSSkillsBtn()">Add</button>
</div>
</div>
<!-- Awards and Achievements -->
<div class="form-group mt-3 text-primary" id="awardsField">
<label for="">Awards and Achievements:</label>
<textarea rows="2" placeholder="Enter Your Achievements" class="form-control awardsText mt-1"></textarea>
<!-- We will add new awards textarea here -->
<div class="addBtn text-center mt-2" id="awardsFieldBtn">
<button class="btn btn-info btn-sm border-dark"
onclick="addAwardsBtn()">Add</button>
</div>
</div>
</div>
<!-- Generate Button -->
<div class="generateBtn text-center mt-4 pb-4">
<button onclick="generate()" class="btn btn-warning border-dark">Generate Resume</button>
</div>
</div>
</div>
<div class="container" id="resume-template">
<div class="row">
<!-- left column -->
<div class="col-md-4 text-center my-2 py-2 left-column">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYSprYSGY7wv-OyUUMHyEYhPtVO1juHDCtVg&usqp=CAU"
class="img-fluid my-2"
id="myImg"
alt="Profile Picture">
<div class="container left-column-details">
<h3 id="uName">--Name--</h3>
<hr>
<p id="uPhNumber">--Phone Number--</p>
<p id="uEmail">--Email--</p>
<p id="uAddress">--Address--</p>
<hr>
</div>
<!-- Important Links -->
<p> <a id="linkedinT" href="#" target="_blank">LinkedIn</a> </p>
<p> <a id="githubT" href="#" target="_blank">GitHub</a> </p>
<p> <a id="websiteT" href="#" target="_blank">Portfolio Website</a> </p>
<!-- Languages -->
<div class="card mt-5 languagesCard">
<div class="card-header languagesCardHeader">
<h5>Languages</h5>
</div>
<div id="languagesT" class="card-body">
<p>These are my Languages.</p>
</div>
</div>
<!-- Interests -->
<div class="card mb-3 interestsCard">
<div class="card-header">
<h5>Interests</h5>
</div>
<div id="interestsT" class="card-body">
<p>These are my Interests.</p>
</div>
</div>
</div>
<!-- right column -->
<div class="col-md-8 py-2 right-column">
<!-- Profile Summary -->
<div class="card mb-3">
<div class="card-header">
<h5>Profile Summary</h5>
</div>
<div id="profileT" class="card-body">
<p>This is my Profile Summary.</p>
</div>
</div>
<!-- Academic Qualification -->
<div class="card mb-3">
<div class="card-header">
<h5>Academic Qualification</h5>
</div>
<div class="card-body">
<ul id="academicT">
<li>This is my Academic Qualification.</li>
</ul>
</div>
</div>
<!-- Work Experience -->
<div class="card mb-3">
<div class="card-header">
<h5>Work Experience</h5>
</div>
<div class="card-body">
<ul id="workT">
<li>This is my Work Experience.</li>
</ul>
</div>
</div>
<!-- Projects -->
<div class="card mb-3">
<div class="card-header">
<h5>Projects</h5>
</div>
<div class="card-body">
<ul id="projectsT">
<li>This is my Project.</li>
</ul>
</div>
</div>
<!-- Skills -->
<div class="card mb-3">
<div class="card-header">
<h5>Skills</h5>
</div>
<div class="card-body">
<h6><strong>Technical Skills</strong></h6>
<ul id="TskillsT">
<li>Technical Skills.</li>
</ul>
<h6><strong>Soft Skills</strong></h6>
<ul id="SskillsT">
<li>Soft Skills.</li>
</ul>
</div>
</div>
<!-- Awards and Achievements -->
<div class="card">
<div class="card-header">
<h5>Awards and Achievements</h5>
</div>
<div class="card-body">
<ul id="awardsT">
<li>These are my Awards and Achievements.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="downloadBtn text-center my-4 pb-2">
<button onclick="downloadResume()" class="btn btn-warning border-dark">Download Resume</button>
</div>
</div>
<!-- Bootstrap JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>