-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.php
More file actions
52 lines (41 loc) · 1.59 KB
/
Copy pathsignup.php
File metadata and controls
52 lines (41 loc) · 1.59 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<!-- CSS -->
<link rel="stylesheet" href="css/signup.css">
<!-- Fonts Link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Signup -->
<div class="login">
<div class="top">
<h1>Create an Account!</h1>
<p>Please enter the information below.</p>
</div>
<div class="login-form">
<!-- Login Form -->
<form action="signup-submit.php" method="post">
<p class="login-text">Username</p>
<input class="login-input" type="username" size="25" name="username" pattern="[A-Za-z0-9]+" required>
<br>
<p class="login-text">Password</p>
<input class="login-input" type="password" size="25" name="password" required>
<br>
<br>
<input class="login-submit" type="submit" value="Create Account">
<br>
<br>
</form>
</div>
<!-- Create a New Account or Login as Guest -->
<p><a href="login.php">Return to login page</a></p>
</div>
</body>
</html>