-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog-in-book-website-by-suraj-ray.html
More file actions
57 lines (41 loc) · 2.03 KB
/
Copy pathlog-in-book-website-by-suraj-ray.html
File metadata and controls
57 lines (41 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suraj's Book Store Log in</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="book-website-by-suraj-ray.css">
</head>
<body id="sign-up-page">
<header>
<div class="head">
<h1><i class="fa-solid fa-book-open-reader"></i> BooꞰKharido.com</h1>
<h5>Buy or rent a book</h5>
</div>
</header>
<main id="log-in-page">
<!-- Buttons to switch between log in form or sign up form -->
<button id="log-in-btn">Log in</button>
<button id="sign-up-btn">Sign up</button>
<!-- log in form -->
<form action="" id="log-in">
<input type="email" name="email" id="email" placeholder="Email address" required>
<input type="password" name="password" id="password" placeholder="Password" required>
<p><a href="#">Forgotten password?</a></p>
<button onclick='alert("Wrong email id or password\nDo not have an acount?\nSign up");'>Log in</button>
</form>
<!-- Sign up form -->
<form action="" id="sign-up">
<input type="text" id="name" placeholder="Full Name" required>
<input type="email" name="email" id="email" placeholder="Email address" required>
<input type="number" name="number" id="number" placeholder="Mobile Number" required>
<input type="password" name="password" id="password" placeholder="Create password" required>
<button id="sign-btn">Sign up</button>
</form>
</main>
<script src="logInBookWebsiteBySurajRay.js"></script>
</body>
</html>