-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJob Apply.html
More file actions
74 lines (68 loc) · 1.98 KB
/
Copy pathJob Apply.html
File metadata and controls
74 lines (68 loc) · 1.98 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Application Form</title>
<style>
body {
background-image: url('https://example.com/background-image.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: #7e7878;
font-family: Arial, sans-serif;
}
h2 {
color: #7e9aa3;
background-color: #0074D9;
padding: 10px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
select {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="file"] {
display: block;
}
input[type="submit"] {
background-color: #2ECC40;
color: #dbeb9f;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h2>Job Application Form</h2>
<form action="/submit-application" method="post" enctype="multipart/form-data">
<label for="jobListing">Select Job Listing:</label>
<select name="jobListing" id="jobListing">
<option value="softwareEngineer">Software Engineer</option>
<option value="dataAnalyst">Data Analyst</option>
<option value="productManager">Product Manager</option>
<!-- Add other job listings here -->
</select>
<label for="fullName">Full Name:</label>
<input type="text" id="fullName" name="fullName" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="resume">Upload Resume:</label>
<input type="file" id="resume" name="resume" accept=".pdf,.doc,.docx" required>
<label for="coverLetter">Upload Cover Letter:</label>
<input type="file" id="coverLetter" name="coverLetter" accept=".pdf,.doc,.docx" required>
<input type="submit" value="Submit Application">
</form>
</body>
</html>