-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_account.html
More file actions
22 lines (22 loc) · 945 Bytes
/
create_account.html
File metadata and controls
22 lines (22 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Account</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="stylesheet" href="lasu.css">
</head>
<body>
<div class="login-container">
<h1 class="animate__animated animate__fadeInDown">Create Account</h1>
<form id="createAccountForm" class="animate__animated animate__fadeInUp">
<input type="text" id="newUsername" placeholder="Username" required>
<input type="password" id="newPassword" placeholder="Password" required>
<button type="submit">Create Account</button>
</form>
<p id="createAccountMessage" class="create-account-message"></p>
</div>
<script src="create_account.js"></script>
</body>
</html>