-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
11 changed files
with
699 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,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>JobSphere - Account</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" class="active">Account</a></li> | ||
<li><a href="create-posting.html">Create Posting</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<h1>Account Settings</h1> | ||
<section class="account-info"> | ||
<h2>Personal Information</h2> | ||
<form> | ||
<label for="fullname">Full Name:</label> | ||
<input type="text" id="fullname" name="fullname"> | ||
|
||
<label for="email">Email:</label> | ||
<input type="email" id="email" name="email"> | ||
|
||
<label for="password">Password:</label> | ||
<input type="password" id="password" name="password"> | ||
|
||
<input type="submit" value="Update Information"> | ||
</form> | ||
</section> | ||
|
||
</main> | ||
<footer> | ||
<p>© 2024 JobSphere</p> | ||
</footer> | ||
</body> | ||
</html> |
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,56 @@ | ||
<!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>© 2024 JobSphere</p> | ||
</footer> | ||
</body> | ||
</html> |
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,66 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>JobSphere - Home</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="logo"><img src="logo.png" alt="JobSphere Logo"></div> | ||
<div class="inbox">Inbox</div> | ||
<nav> | ||
<ul> | ||
<li><a href="home.html" class="active">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">Create Posting</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<section class="welcome"> | ||
<h1>Welcome, Username</h1> | ||
</section> | ||
<section class="quick-look"> | ||
<h2>Quick Look</h2> | ||
<div class="jobs-list"> | ||
<article> | ||
<a href="posting.html"> | ||
<img src="job.png" alt="Job 1"> | ||
<h3>Job 1</h3> | ||
</a> | ||
</article> | ||
<article> | ||
<a href="posting.html"> | ||
<img src="job.png" alt="Job 2"> | ||
<h3>Job 2</h3> | ||
</a> | ||
</article> | ||
<article> | ||
<a href="posting.html"> | ||
<img src="job.png" alt="Job 3"> | ||
<h3>Job 3</h3> | ||
</a> | ||
</article> | ||
<article> | ||
<a href="posting.html"> | ||
<img src="job.png" alt="Job 4"> | ||
<h3>Job 4</h3> | ||
</a> | ||
</article> | ||
|
||
</div> | ||
</section> | ||
<section class="application-status"> | ||
<h2>Application Status</h2> | ||
<p>No. of Jobs Applied: <span>0</span></p> | ||
<p>Status: <span></span></p> | ||
</section> | ||
</main> | ||
<footer> | ||
<p>© 2024 JobSphere</p> | ||
</footer> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,118 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>JobSphere - Jobs</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" class="active">Jobs</a></li> | ||
<li><a href="account.html">Account</a></li> | ||
<li><a href="create-posting.html">Create Posting</a></li> | ||
</ul> | ||
<div class="search-bar"> | ||
<input type="search" placeholder="Search jobs..." /> | ||
</div> | ||
</nav> | ||
</header> | ||
<main> | ||
<h1>Jobs</h1> | ||
<section class="recents"> | ||
<h2>Recents</h2> | ||
<div class="jobs-grid"> | ||
<!-- Job Cards --> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 2</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 3</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 4</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 5</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 6</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 7</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 8</h3> | ||
</div> | ||
<div class="job-card"> | ||
<span class="star-icon">★</span> | ||
<a href="posting.html"> | ||
<img src="job-thumb.png" alt="Job 2" /> | ||
</a> | ||
<h3>Job 9</h3> | ||
</div> | ||
</div> | ||
</section> | ||
<section class="recommended"> | ||
<h2>Recommended</h2> | ||
<ul> | ||
<li> | ||
<span class="job-title">Job 10</span> | ||
<span class="star-icon">★</span> | ||
</li> | ||
<li> | ||
<span class="job-title">Job 11</span> | ||
<span class="star-icon">★</span> | ||
</li> | ||
<li> | ||
<span class="job-title">Job 12</span> | ||
<span class="star-icon">★</span> | ||
</li> | ||
<li> | ||
<span class="job-title">Job 13</span> | ||
<span class="star-icon">★</span> | ||
</li> | ||
<li> | ||
<span class="job-title">Job 14</span> | ||
<span class="star-icon">★</span> | ||
</li> | ||
</ul> | ||
</section> | ||
</main> | ||
<footer> | ||
<p>© 2024 JobSphere</p> | ||
</footer> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>JobSphere - Job 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">Create Posting</a></li> | ||
</ul> | ||
<div class="search-bar"> | ||
<input type="search" placeholder="Search jobs..."> | ||
</div> | ||
</nav> | ||
</header> | ||
<main> | ||
<article class="job-posting"> | ||
<header class="job-posting-header"> | ||
<h1>Job Title</h1> | ||
<h2>Company Name</h2> | ||
</header> | ||
<section class="job-description"> | ||
<p>Job Description content...</p> | ||
</section> | ||
<aside class="job-requirements"> | ||
<h3>Requirements</h3> | ||
<ul> | ||
<li>Requirement 1</li> | ||
<li>Requirement 2</li> | ||
<li>Requirement 3</li> | ||
</ul> | ||
</aside> | ||
<footer class="job-application"> | ||
<button type="button" class="apply-button">Apply</button> | ||
</footer> | ||
</article> | ||
</main> | ||
<footer> | ||
<p>© 2024 JobSphere</p> | ||
</footer> | ||
</body> | ||
</html> |
Empty file.
Oops, something went wrong.