39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<form id="registerForm">
|
|
<div class="form-container">
|
|
<h1>Create Account</h1>
|
|
|
|
<label for="email"><b>Email</b></label>
|
|
<input type="email" placeholder="Enter email "id="email" required>
|
|
|
|
<label for="uname"><b>Username</b></label>
|
|
<input type="text" placeholder="Enter username" id="uname" required>
|
|
|
|
<label for="psw"><b>Password</b></label>
|
|
<input type="password" placeholder="Enter password" id="psw" required>
|
|
|
|
<label for="rpsw"><b>Repeat Password</b></label>
|
|
<input type="password" placeholder="Enter password again" id="rpsw" required>
|
|
|
|
<button type="submit">Register</button>
|
|
<div class="loginText">
|
|
<label>
|
|
Already have an account? <a href="./home.html">Login</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
<link rel="stylesheet" href="/styles/register.css">
|
|
<script type="module" src="/scripts/register.js"></script>
|
|
|
|
</html> |