-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacc_create.html
More file actions
29 lines (25 loc) · 1.12 KB
/
Copy pathacc_create.html
File metadata and controls
29 lines (25 loc) · 1.12 KB
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
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create a new account</title>
<link rel="stylesheet" href="acc_new.css">
</head>
<body>
<div class="container">
<p class="para">Log in or create a new account</p>
<form action="signed.html" >
<label for="username" class="user">Username</label>
<div><input type="text" id="username" required></div>
<label for="email" class="user">Email</label>
<div><input type="email" id="email" required></div>
<label for="password" class="pass">Password</label>
<div><input type="password" id="password" required></div>
<label for="confirm_password" class="pass">Confirm Password</label>
<div><input type="password" id="confirm_password" required></div>
<button type="submit" class="sign">Create Account</button>
<div class="create"><a href="index.html" target="_self">Already have an account?</a></div>
</form>
</body>
</html>