-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
60 lines (50 loc) · 1.72 KB
/
signup.html
File metadata and controls
60 lines (50 loc) · 1.72 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
53
54
55
56
57
58
59
60
<!--<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up | Sappe's Heating and Air</title>
<link rel="stylesheet" href="signup.css" />
</head>
<body>
<h2>Sign Up</h2>
<form id="signupForm">
<label for="newUsername">Username:</label><br />
<input type="text" id="newUsername" required /><br /><br />
<label for="newPassword">Password:</label><br />
<input type="password" id="newPassword" required /><br /><br />
<button type="submit">Sign Up</button>
</form>
<p id="signupMessage" style="color: red;"></p>
<p class="auth-link-text">
Already have an account? <a class="auth-link" href="login.html">Log in</a>
</p>
<script src="signup.js"></script>
</body>
</html>-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sign Up</title>
<link rel="stylesheet" href="signup.css">
<link rel="icon" href="sappes_logo_cropped.png">
</head>
<body>
<div class="auth-container">
<h2>Sign Up</h2>
<form id="signupForm">
<label for="newUsername">Username:</label>
<input type="text" id="newUsername" required>
<label for="newPassword">Password:</label>
<input type="password" id="newPassword" required>
<button type="submit">Sign Up</button>
</form>
<p id="signupMessage"></p>
<p class="auth-link-text">
Already have an account? <a class="auth-link" href="index.html">Log in</a>
</p>
</div>
<script src="signup.js"></script>
</body>
</html>