-
Notifications
You must be signed in to change notification settings - Fork 0
/
Apply.html
41 lines (30 loc) · 1.44 KB
/
Apply.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
<html>
<head>
<link href="styleApply.css"media="all" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="APPLY" name="test">
<h2 id="COMPANY"></h2>
<h3 id="CITY"></h3>
<b>This information will be shared with the Employer:</b>
<br>
<span id="fname"></span> <span id="lname"></span>
<br>
<span id="userEMail"></span>
<br>
<span id="Phonenum"></span>
<br>
<span id="linkedinUrl"></span>
<br>
<br>
Upload your CV: <form enctype="multipart/form-data" action="/upload/image" method="post">
<input id="image-file" type="file" />
</form>
<input type="checkbox" name="Concent" id="concent"> I concent to this information being shared with the employer<br>
<input class="button1 button2" type="button" onclick="back()" value="back"/>
<input class="button1 button3" type="button" onclick="Apply()" value="Apply"/>
<br/>
</div>
<script src="apply.js"></script>
</body>
</html>