-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply.html
84 lines (71 loc) · 2.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Seeker Registration</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css">
<style>
form {
max-width: 600px;
margin: 50px auto;
text-align: left;
}
form label {
display: block;
margin-top: 20px;
font-weight: bold;
}
form input[type="text"],
form input[type="number"],
form select,
form textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1em;
box-sizing: border-box;
}
form input[type="submit"] {
background-color: #007BFF;
color: white;
font-size: 1em;
font-weight: bold;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 20px;
}
form input[type="submit"]:hover {
background-color: #0056b3;
}
/* ... (previous CSS rules) ... */
</style>
</head>
<body>
<div class="content-area">
<h1>Job Seeker Registration</h1>
<form action="#" method="post" enctype="multipart/form-data">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="experience">Experience (in years):</label>
<input type="number" id="experience" name="experience" min="0" step="0.1" required>
<label for="skills">Skills (comma-separated):</label>
<input type="text" id="skills" name="skills" required>
<label for="job_type">Job Type:</label>
<select id="job_type" name="job_type" required>
<option value="">Select a job type</option>
<option value="onsite">Onsite</option>
<option value="remote">Remote</option>
</select>
<label for="resume">Upload Resume:</label>
<input type="file" id="resume" name="resume" accept=".pdf, .doc, .docx" required>
<input type="submit" value="Submit">
</form>
</div>
<!-- ... (previous JavaScript and fallback code) ... -->
</body>
</html>