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 - Account</title>
<link rel="stylesheet" href="style.css">
<script>
function showalert () {
alert("Success");
}
</script>
</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 class="account-info-form">
<label for="fullname">Full Name:</label>
<input type="text" id="fullname" name="fullname" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Update Information" onclick="showalert()">
</form>
</section>
</main>
<footer>
<p>&copy; 2024 JobSphere</p>
</footer>
</body>
</html>