Skip to content

Commit

Permalink
upload code
Browse files Browse the repository at this point in the history
  • Loading branch information
amir1 authored Mar 18, 2024
1 parent 733f39c commit 5cbc51b
Show file tree
Hide file tree
Showing 11 changed files with 699 additions and 0 deletions.
44 changes: 44 additions & 0 deletions project 2/account.html
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>&copy; 2024 JobSphere</p>
</footer>
</body>
</html>
56 changes: 56 additions & 0 deletions project 2/create-posting.html
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>&copy; 2024 JobSphere</p>
</footer>
</body>
</html>
66 changes: 66 additions & 0 deletions project 2/home.html
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>&copy; 2024 JobSphere</p>
</footer>
</body>
</html>
Binary file added project 2/job-thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project 2/job.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
118 changes: 118 additions & 0 deletions project 2/jobs.html
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>&copy; 2024 JobSphere</p>
</footer>
</body>
</html>
Binary file added project 2/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project 2/logo.webp
Binary file not shown.
52 changes: 52 additions & 0 deletions project 2/posting.html
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>&copy; 2024 JobSphere</p>
</footer>
</body>
</html>
Empty file added project 2/rough.txt
Empty file.
Loading

0 comments on commit 5cbc51b

Please sign in to comment.