-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (24 loc) · 871 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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="shortcut icon" href="logo.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="register-container">
<form id="registerForm" class="form">
<h2>Create Account</h2>
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Register</button>
</form>
<p>Already have an account? <a href="login.html">Login here</a></p>
</div>
</div>
<script src="register.js"></script>
</body>
</html>