-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 3.19 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
<!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">
<link rel="icon" type="image/x-icon" href="./assets/img/5234318.png">
<title>Resume Builder</title>
<script src="./assets/js/const.js"></script>
<link rel="stylesheet" href="./assets/css/main.css">
<script src="./assets/js/main.js"></script>
<link rel="stylesheet" href="./assets/css/form.css">
<script src="./assets/js/form.js"></script>
<link rel="stylesheet" href="./assets/css/index.css">
<script src="./assets/js/index.js"></script>
<link rel="stylesheet" href="./assets/css/template.css">
<script src="./assets/js/template.js"></script>
<link rel="stylesheet" href="./assets/css/template1.css">
<script src="./assets/js/template1.js"></script>
</head>
<body onload="OnLoad()">
<!-- frame class must have id -->
<div class="frame" id="form"></div>
<div class="frame" id="main">
<label class="main-heading">Welcome to Resume Builder</label>
<label class="main-subheading">Lets Build Resume in 3 Simple Steps</label>
<div class="main-steps">
<div class="main-step">
<label class="main-step-heading">Step : 1</label>
<label class="main-step-subheading">Fill Form to Generate Resume Data File</label>
<a class="main-theme-button-1" onclick="openForm()">Enter Resume Details</a>
<label class="main-step-heading">OR</label>
<label class="main-step-subheading">Edit Generate Resume Data File</label>
<input class="main-theme-button-1" type="file" name="" id="" onclick="resetInput(this)" onchange="FileUploaded(this,true)">
</div>
<div class="main-step">
<label class="main-step-heading">Step : 2</label>
<label class="main-step-subheading">Upload Generate Resume Data File from First Step</label>
<input class="main-theme-button-1" type="file" name="" id="" onclick="resetInput(this)" onchange="FileUploaded(this)">
<label class="main-step-subheading">(Reads the form data from the uploaded file)</label>
</div>
<div class="main-step">
<label class="main-step-heading">Step : 3</label>
<label class="main-step-subheading">Select Below Resume Templates Of Your Choice</label>
<div class="main-template-button-frame">
<a class="main-theme-button-1" onclick="openTemplate('template1')">Template-1</a>
<a class="main-theme-button-1" onclick="openTemplate('template2')">Template-2</a>
</div>
<label class="main-step-subheading">Please make sure to Print the page in A4 page size<br>(Build a cover Letter as Well)</label>
</div>
</div>
<label class="main-subheading">Made with Fun</label>
<a class="main-subheading main-footer" href="http://github.com/arindamsharma/">@ArindamSharma</a>
</div>
<div class="frame" id="template1"></div>
<div class="frame" id="template2"></div>
</body>
</html>