-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign-up.html
More file actions
52 lines (42 loc) · 2.04 KB
/
Copy pathsign-up.html
File metadata and controls
52 lines (42 loc) · 2.04 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" />
<title>Pawmart – Sign Up</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="background">
<!-- Banner Section -->
<header class="banner">
<img class="logo" src="images/pawmart.png" alt="Pawmart Logo" />
<h1 class="banner-title">Welcome to Pawmart!</h1>
</header>
<nav>
<div>
<a href="Homepage.html" id="nav-btn-homepage" class="nav-btn">Home</a>
<a href="profile.html" id="nav-btn-customer" class="nav-btn" style="display:none;">Profile</a>
<a href="admin-users.html" id="nav-btn-admin" class="nav-btn" style="display:none;">Admin Users</a>
<a href="products.html" id="nav-btn-products" class="nav-btn">Products</a>
<a href="sign-in.html" id="nav-btn-signin" class="nav-btn">Sign in</a>
<a href="sign-up.html" id="nav-btn-signup" class="nav-btn">Sign Up</a>
<button id="nav-btn-logout" class="nav-btn" style="display:none;">Log Out</button>
</div>
</nav>
<h2 class="intro">Please input the following information to create a new account</h2>
<div class="form">
<h2>Sign up</h2>
<form action="sign-in.html" method="POST" id="sign-upform">
<input type="email" id="email" name="email" placeholder="Email" required>
<input type="password" id="password" name="password" placeholder="Password" required>
<h3>Security Question</h3>
<select id="security" name="securityQuestion">
<option value="option1">What was the name of the street you grew up on?</option>
<option value="option2">What was your childhood pets name?</option>
<option value="option3">What elementary school did you attend?</option>
</select>
<input type="text" placeholder="Answer" name="securityAnswer" required>
<button type="submit" >Sign Up</button>
</form>
<script src="signuproute.js"></script>
</div>
</html>