-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
28 lines (26 loc) · 862 Bytes
/
signup.html
File metadata and controls
28 lines (26 loc) · 862 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Sign Up Page</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet">
</head>
<body>
<section class="overlay">
<h1>Sign Up</h1>
<p>Create an account:</p>
<form action="submission.html" method="GET">
<label for="username">Username:</label>
<br>
<input id="username" name="username" type="text" minlength="3" maxlength="15"required pattern="[a-zA-Z0-9]+">
<br>
<label for="pw">Password:</label>
<br>
<input id="pw" name="pw" type="password" minlength="8" maxlength="15" required>
<br>
<input type="submit" value="Submit">
</form>
</section>
</body>
</html>