forked from AditiDiti/HelpingHands2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
51 lines (45 loc) · 2.25 KB
/
form.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
<!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">
<title>Register</title>
</head>
<body>
<link rel="stylesheet" href="form.css" />
<div class="main">
<h1 id="title">Job Listing Questionnaire Form</h1>
<div class="main-content">
<div class="form-content">
<form id="survey-form">
<label for="name" id="name-label">What skills do you have?</label>
<input id="name" type="text" required placeholder="Please list all relevant skills you possess." />
<label for="name" id="name-label">Do you have any experience in this field?</label>
<input id="name" type="text" required placeholder="Experience(if any)" />
<label for="dropdown">Are you willing to relocate for a job?</label>
<select id="dropdown">
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<label for="number" id="number-label">What is your expected salary range?</label>
<input id="number" type="number" required placeholder="Enter your range" />
<label for="dropdown">What are your job requirements?</label>
<select id="dropdown">
<option value="student">Student</option>
<option value="full-time-learner">Full time learner</option>
<option value="full-time-job">Full time job</option>
<option value="part-time-job">Part time job</option>
<option value="prefer-not-to-say">Prefer not to say</option>
<option value="other">Other</option>
</select>
<label for="comment">Do you have any other preferences or requirements for your desired job?</label>
<textarea rows="4" cols="50" id="comment">Enter your comment here...</textarea>
<button type="submit" id="submit" onclick="window.location.href='listofjob.html'" >Submit</button>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>