-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform3.php
215 lines (168 loc) · 9.76 KB
/
form3.php
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
<?php
session_start();
if(isset($_POST['next2'])){
foreach($_POST as $key => $value){
$_SESSION['info'][$key] = $value;
}
$keys = array_keys($_SESSION['info']);
if(in_array('next2',$keys)){
unset($_SESSION['info']['next2']);
}
header('location:form4.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<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>form3</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="css/form.css">
<script src="script.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg sticky-top navbar-dark" style="background-color:#6C3483 ;">
<span class="navbar-brand mx-auto h1 "style="font-size:2.5rem;">RESUME FORM</span>
</nav>
<div class="pcontainer mt-5 mb-3" id="fcon3" data-aos="fade-up">
<ul class="progressbar">
<li class="active">Step 1</li>
<li class="active">Step 2</li>
<li >Step 3</li>
<li>Step 4</li>
</ul>
</div>
<div class="container" data-aos="fade-up-right">
<form action="" method="post" >
<div class="container">
<h1 class="mt-5 mb-5"><b>ABOUT</b></h1>
<div class="row">
<div class="col">
<div class="input-group">
<input class="form-control shadow-none p-3" aria-label="With textarea" type="textarea" rows="4" cols="50" value ="<?= isset($_SESSION['info']['about'])? $_SESSION['info']['about'] : ''?>" name="about" placeholder="brief summary about yourself" required>
</div>
</div>
</div>
</div>
<div class="container">
<h1 class="mt-5 mb-5" data-aos="fade-right"><b>EXPERIENCE</b></h1>
<div class="row" data-aos="zoom-in-up">
<div class="col-md-3 col-sm-3">
<label class="form-label">Duration</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['experiod1'])? $_SESSION['info']['experiod1'] : ''?>" name="experiod1" placeholder="from - to" required>
</div>
<div class="col-md-3 col-sm-3">
<label class="form-label">Company name</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['cname1'])? $_SESSION['info']['cname1'] : ''?>" name="cname1" placeholder="Company name" required>
</div>
<div class="col-md-6">
<label class="form-label">Description</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['exdesc1'])? $_SESSION['info']['exdesc1'] : ''?>" name="exdesc1" placeholder="Description about your experience" required>
</div>
</div>
<!-- <div class="row" data-aos="zoom-in-up">
<div class="col-md-3 col-sm-3">
<label class="form-label">Duration</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['experiod2'])? $_SESSION['info']['experiod2'] : ''?>" name="experiod2" placeholder="from - to" required>
</div>
<div class="col-md-3 col-sm-3">
<label class="form-label">Company name</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['cname2'])? $_SESSION['info']['cname2'] : ''?>" name="cname2" placeholder="Company name" required>
</div> -->
<div class="col-md-6">
<label class="form-label">Description</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['exdesc2'])? $_SESSION['info']['exdesc2'] : ''?>" name="exdesc2" placeholder="Description about your experience" required>
</div>
</div>
</div>
<div class="container">
<h1 class="mt-5 mb-5" data-aos="fade-right"><b>TECHNICAL SKILLS</b></h1>
<div class="row" data-aos="zoom-in-up">
<div class="col-md-6">
<label class="form-label">Name of the Skill</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tskill1'])? $_SESSION['info']['tskill1'] : ''?>" name="tskill1" placeholder="Enter your skill" required>
</div>
<div class="col-md-6">
<label class="form-label">Percentage</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tper1'])? $_SESSION['info']['tper1'] : ''?>" name="tper1" placeholder="Enter percentage" required>
</div>
</div>
<div class="row" data-aos="zoom-in-up">
<div class="col-md-6">
<label class="form-label">Name of the Skill</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tskill2'])? $_SESSION['info']['tskill2'] : ''?>" name="tskill2" placeholder="Enter your skill" required>
</div>
<div class="col-md-6">
<label class="form-label">Percentage</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tper2'])? $_SESSION['info']['tper2'] : ''?>" name="tper2" placeholder="Enter percentage" required>
</div>
</div>
<div class="row" data-aos="zoom-in-up">
<div class="col-md-6">
<label class="form-label">Name of the Skill</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tskill3'])? $_SESSION['info']['tskill3'] : ''?>" name="tskill3" placeholder="Enter your skill" required>
</div>
<div class="col-md-6">
<label class="form-label">Percentage</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tper3'])? $_SESSION['info']['tper3'] : ''?>" name="tper3" placeholder="Enter percentage" required>
</div>
</div>
<div class="row" data-aos="zoom-in-up">
<div class="col-md-6">
<label class="form-label">Name of the Skill</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tskill4'])? $_SESSION['info']['tskill4'] : ''?>" name="tskill4" placeholder="Enter your skill" required>
</div>
<div class="col-md-6">
<label class="form-label">Percentage</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tper4'])? $_SESSION['info']['tper4'] : ''?>" name="tper4" placeholder="Enter percentage" required>
</div>
</div>
<div class="row" data-aos="zoom-in-up">
<div class="col-md-6">
<label class="form-label">Name of the Skill</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tskill5'])? $_SESSION['info']['tskill5'] : ''?>" name="tskill5" placeholder="Enter your skill" required>
</div>
<div class="col-md-6">
<label class="form-label">Percentage</label>
<input type="text" class="form-control shadow-none" value ="<?= isset($_SESSION['info']['tper5'])? $_SESSION['info']['tper5'] : ''?>" name="tper5" placeholder="Enter percentage" required>
</div>
</div>
</div>
<div class="container mt-5 mb-5" data-aos="fade-up">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-4">
<button class="btn btn-lg btn-primary mt-3 mb-3 button shadow-none" name="previousform2"><a href="form2.php"
style="color:white;text-decoration:none;">Previous</a></button>
</div>
<div class="col-md-4">
<button class="btn btn-lg btn-primary mt-3 mb-3 button shadow-none" name="next2" type="submit">Next</button>
</div>
<div class="col-md-2"></div>
</div>
</div>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 120,
duration: 1000,
});
</script>
</body>
</html>