forked from Jagroop2001/Pages-A-Book-Shop-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
57 lines (53 loc) · 1.68 KB
/
sign-up.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/sign-up.css" />
<title>Sign up</title>
</head>
<body>
<main>
<section class="hero">
<img src="images/library.jpg" alt="library" />
</section>
<section class="form">
<h3><a href="index.html">Home</a></h3>
<h1>Create your Account</h1>
<form>
<div>
<div>
<input type="text" id="first-name" name="Firstname" required placeholder="First name" />
<label for="first-name" id="first-name-error"></label>
</div>
<div>
<input type="text" name="Lastname" id="last-name" placeholder="Last name" required />
<label for="last-name" id="last-name-error"></label>
</div>
</div>
<div>
<input type="text" id="user-name" name="Username" placeholder="Username"/>
<label for="user-name" id="user-name-error"></label>
</div>
<div>
<input type="text" name="Email" id="email" placeholder="Email / Phone No."/>
<label for="email" id="email-error"></label>
</div>
<div>
<input type="password" id="password" name="Password" placeholder="Password"/>
<label for="password" id="password-error"></label>
</div>
<div>
<input type="password" name="Confirm" id="confirm-password" placeholder="Confirm Password"/>
<label for="confirm-password" id="confirm-password-error"></label>
</div>
<button type="submit">Sign up</button>
<div style="flex-direction: column">
<h3><a href="login.html">Already have an account?</a></h3>
</div>
</form>
</section>
</main>
<script src="scripts/sign-up.js"/>
</body>
</html>