-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
73 lines (67 loc) · 2.66 KB
/
registration.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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/main.css">
<title>Registration Page</title>
</head>
<body>
<header class="topHeader">
<div class="imageSide">
<img src="./images/eREADSlogo.png" alt="Logo">
</div>
<div class="navSide">
<nav>
<ul>
<li><a href="">HOME</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">REGISTRATION</a></li>
<li><a href="">E-BOOKS</a></li>
</ul>
</nav>
</div>
<div class="searchBar">
<form action="searchLink">
<input type="text" placeholder="Search E-Books" name="q">
<button type="submit"><img src="./images/icons/search.png"></button>
</form>
</div>
<div class="profileIcon">
<img src="./images/icons/profileIcon.png" alt="Profile">
</div>
</header>
<main>
<div class="left_section">
<h1> Welcome to eReads</h1>
<p class="sign"><a>Sign Up</a></p>
<form>
<div class="form_control">
<label for="email">What's your email?</label>
<input type="email" name="email" id="email" placeholder="Email Address">
</div>
<div class="form_control">
<label for="password">Create a password.</label>
<input type="password" name="password" id="password" placeholder="Enter Password">
</div>
<div class="form_control">
<label for="Confirmpassword">Confirm password.</label>
<input type="password" name="Confirmpassword" id="password" placeholder="Enter Password Again">
</div>
<div class="form_control">
<label for="name">What should we call you?</label>
<input type="name" name="name" id="name" placeholder="Enter Profile Name">
<p>This Name Will Appear On your Profile</p>
<br>
<p class="terms">By clicking “Let’s get started” you are agreeing to our <a>Terms and Conditions.</a></p>
</div>
<button>Create Profile</button>
</form>
</div>
<divr class="right_section">
<img src="./images/RedMugIpadImage.png" alt="">
</div>
</main>
</body>
</html>