Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JobSphere - Create Posting</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo"><img src="logo.png" alt="JobSphere Logo"></div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="jobs.html">Jobs</a></li>
<li><a href="account.html">Account</a></li>
<li><a href="create-posting.html" class="active">Create Posting</a></li>
</ul>
</nav>
</header>
<main>
<h1>Create Job Posting</h1>
<form class="create-posting-form">
<label for="job-title">Job Title:</label>
<input type="text" id="job-title" name="job_title" required>
<label for="company-name">Company Name:</label>
<input type="text" id="company-name" name="company_name" required>
<label for="job-description">Job Description:</label>
<textarea id="job-description" name="job_description" rows="4" required></textarea>
<fieldset>
<legend>Requirements</legend>
<div class="requirement">
<input type="checkbox" id="requirement1" name="requirement1">
<label for="requirement1">Requirement 1</label>
</div>
<div class="requirement">
<input type="checkbox" id="requirement2" name="requirement2">
<label for="requirement2">Requirement 2</label>
</div>
<div class="requirement">
<input type="checkbox" id="requirement3" name="requirement3">
<label for="requirement3">Requirement 3</label>
</div>
</fieldset>
<button type="submit">Post Job</button>
</form>
</main>
<footer>
<p>&copy; 2024 JobSphere</p>
</footer>
<script src="script.js"></script>
</body>
</html>