mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-20 02:02:25 +03:00
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Signup</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Sign Up</h1>
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="about.html">About</a>
|
|
<a href="services.html">Services</a>
|
|
<a href="contact.html">Contact</a>
|
|
<a href="login.html">Login</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<form action="#" method="POST">
|
|
<label for="fullname">Full Name:</label>
|
|
<input type="text" id="fullname" name="fullname" required /><br />
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required /><br />
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required /><br />
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required /><br />
|
|
<button type="submit">Sign Up</button>
|
|
</form>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 Your Company</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|