-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
25 lines (23 loc) · 1.04 KB
/
signup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="gbh.ico">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>Gingerbread House: New Gingerbread Person</title>
</head>
<body>
<div id="form">
<h2 class="form-heading">Sign up for Gingerbread House: Vendor Store Front</h2>
Name: <input id="name" type="text" class="form-control" placeholder="Name" autofocus>
Email: <input id="email" type="text" class="form-control" placeholder="Email Address" required>
Password: <input id="password" type="password" class="form-control" placeholder="Password" required>
Confirm Password: <input id="password" type="password" class="form-control" placeholder="Password" required>
<button class="btn" type="submit">Create my account</button>
<br>
</form>
Already have an account? <a href="login.html">Log in</a> <br>
<a href="login.html">Gingerbread Home</a> | <a href="FAQ.html">FAQs</a> | <a href="index.html">Bread Crumbs Home</a>
</div>
</body>
</html>