24 lines
960 B
HTML
24 lines
960 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Register</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<div class="glass-container" id="glass-container">
|
|
<div class="register-box">
|
|
<h2>Register</h2>
|
|
<form id="registerForm">
|
|
<input type="text" id="email" name="email" required placeholder="Email">
|
|
<input type="password" id="password" name="password" required placeholder="Password">
|
|
<input type="password" id="confirm_password" name="confirm_password" required placeholder="Repeat the password">
|
|
<button type="submit">Register</button>
|
|
<p>Do you have an account? <a href="./../login/index.html" id="Login">Login</a></p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script src="js.js"></script>
|
|
</body>
|
|
</html> |