-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
116 lines (114 loc) · 3.7 KB
/
Registration.html
File metadata and controls
116 lines (114 loc) · 3.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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" />
<link rel="stylesheet" href="./CSS/styles.css" />
<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=Lemonada&display=swap" rel="stylesheet">
<title>Registration Page</title>
</head>
<body>
<div class="container">
<div class="top-navigation">
<div class="top-navigation-left">
<img src="./Assets/logo_new.svg" alt="" />
<div class="top-navigation-links">
<a href="./index.html">Home</a>
<a href="./About.html">About</a>
<a href="./registration.html">Registration</a>
<a href="./books.html">E-books</a>
</div>
</div>
<div class="top-navigation-right">
<button type="button">
<img src="./Assets/search.svg" alt="buttonpng" />
SEARCH e-BOOKS</button>
</div>
<div class="iconimage">
<a href="./myaccount.html"><img src="./Assets/profileIcon.png" alt=""></a>
</div>
</div>
</div>
<div class="registrationcontainer">
<div class="registrationlandingpage">
<div class="registrationlandingpagecontent">
<h2>Welcome to eReads</h2>
<h4>Sign up</h4>
</div>
<form action="" method="post">
<div class="reg">
<div class="label">
<label for="">What's your email address?</label>
</div>
<div class="input">
<input
type="email"
name=""
id=""
placeholder="Email Address"
/>
</div>
</div>
<div class="reg">
<div class="label">
<label for="">Create a password</label>
</div>
<div class="input">
<input
type="password"
name=""
id=""
placeholder="Enter password"
/>
</div>
</div>
<div class="reg">
<div class="label">
<label for="">Confirm your password?</label>
</div>
<div class="input">
<input
type="password"
name=""
id=""
placeholder="Enter your password again."
/>
</div>
</div>
<div class="reg">
<div class="label">
<label for="">What should we call you?</label>
</div>
<div class="input">
<input
type="email"
name=""
id=""
placeholder="Enter your profile name"
/>
<p>This name will appear on your profile.</p>
</div>
</div>
<p>
By clicking "Let's get started" you are agreeing to our
<a href="Terms and Conditions.">Terms and Conditons.</a>
</p>
<div class="submitbutton">
<button>Create Profile</button>
</div>
</form>
<div class="registrationlandingpageimage">
<img src="./Assets/RedMugIpadImage.png" alt=" " />
</div>
</div>
</div>
<footer>
<a href="">Privacy</a>|<a href="">Copyright</a>|<a href=""
>Terms of Use & Licenses</a
>|<a href="">Authors</a>|<a href="">Publishers</a>
</footer>
</body>
</html>