-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f784603
commit 4a3d526
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Job Search</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f0f0f0; | ||
} | ||
.search-container { | ||
width: 500px; | ||
margin: 50px auto; | ||
padding: 20px; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
} | ||
input[type="text"], select { | ||
width: 100%; | ||
padding: 10px; | ||
margin: 10px 0; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
} | ||
input[type="submit"] { | ||
width: 100%; | ||
padding: 10px; | ||
border: none; | ||
border-radius: 5px; | ||
background-color: #5cb85c; | ||
color: white; | ||
cursor: pointer; | ||
} | ||
input[type="submit"]:hover { | ||
background-color: #4cae4c; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="search-container"> | ||
<form action="/search" method="get"> | ||
<input type="text" name="keywords" placeholder="Job title, keywords, or company" required> | ||
|
||
<select name="location"> | ||
<option value="">Any Location</option> | ||
<option value="new-york">New York</option> | ||
<option value="san-francisco">San Francisco</option> | ||
<option value="seattle">Seattle</option> | ||
<!-- Add more locations as needed --> | ||
</select> | ||
|
||
<select name="industry"> | ||
<option value="">Any Industry</option> | ||
<option value="technology">Technology</option> | ||
<option value="finance">Finance</option> | ||
<option value="healthcare">Healthcare</option> | ||
<!-- Add more industries as needed --> | ||
</select> | ||
|
||
<select name="salary-range"> | ||
<option value="">Any Salary Range</option> | ||
<option value="0-50000">Under $50,000</option> | ||
<option value="50000-100000">$50,000 - $100,000</option> | ||
<option value="100000+">Over $100,000</option> | ||
<!-- Add more salary ranges as needed --> | ||
</select> | ||
|
||
<select name="job-type"> | ||
<option value="">Any Job Type</option> | ||
<option value="full-time">Full-time</option> | ||
<option value="part-time">Part-time</option> | ||
<option value="contract">Contract</option> | ||
<option value="internship">Internship</option> | ||
<!-- Add more job types as needed --> | ||
</select> | ||
|
||
<input type="submit" value="Search Jobs"> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
</html> |