-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwishlistform.html
More file actions
98 lines (91 loc) · 5.95 KB
/
Copy pathwishlistform.html
File metadata and controls
98 lines (91 loc) · 5.95 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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="wishlist.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>Book Request - BookIO</title>
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Book.IO</a>
<a class="nav-link" href="index.html#popular">Popular</a>
<a class="nav-link" href="uniprescribed.html">Prescribed by Universities</a>
<a class="nav-link" href="wishlistform.html">Request a Book</a>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search here!" aria-label="Search">
<button class="btn" type="submit">Search</button>
</form>
<a href="profilepage.html" class="nav-link"><img src="./profile.png" alt=""></a>
<a href="login_page.html"><button class="btn" type="submit" href="=">Login/Sign Up!</button></a>
</div>
</nav>
<div class="form-body">
<div class="row">
<div class="form-holder">
<div class="form-content">
<div class="form-items">
<h3>Book Request</h3>
<p>The book you want isn't available on BookIO? Just leave a request for any book along with which university it is prescribed by and we'll work on making it available for you!</p>
<div class="col-md-12">
<input class="form-control" type="email" name="email" id="email" placeholder="E-mail Address" required>
<div class="valid-feedback">Email field is valid!</div>
<div class="invalid-feedback">Email field cannot be blank!</div>
</div>
<div class="col-md-12">
<input class="form-control" type="text" name="name" id="namebook" placeholder="Name of the Book" required>
<div class="valid-feedback">Book name field is valid!</div>
<div class="invalid-feedback">Book name field cannot be blank!</div>
</div>
<div class="col-md-12">
<input class="form-control" type="text" name="name" id="nameauthor" placeholder="Name of the Author" required>
<div class="valid-feedback">Author name field is valid!</div>
<div class="invalid-feedback">Author name field cannot be blank!</div>
</div>
<div class="col-md-12">
<select class="form-select mt-3" required id="domain">
<option selected disabled value="">Engineering Domain</option>
<option value="Data Structures and Algorithms">Data Structures and Algorithms</option>
<option value="Machine Learning">Machine Learning</option>
<option value="Software Engineering">Software Engineering</option>
<option value="Engineering Mathematics">Engineering Mathematics</option>
<option value="Computer Engineering and Architecture">Computer Engineering and Architecture</option>
<option value="Thermodynamics">Thermodynamics</option>
</select>
<div class="valid-feedback">You selected a domain!</div>
<div class="invalid-feedback">Please select a domain!</div>
</div>
<div class="col-md-12">
<input class="form-control" type="text" name="isbn" id="isbn" placeholder="ISBN number" required>
<div class="valid-feedback">ISBN number field is valid!</div>
<div class="invalid-feedback">ISBN number cannot be blank!</div>
</div>
<div class="col-md-12 mt-3"></div>
<div class="form-button mt-3" style="text-align: center;">
<button id="submit" type="submit" class="btn" onclick="savedata()">Request for the Book!</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer text-center">
<h3>Book.IO</h3>
<p>All CopyRight and Terms Reserved</p>
<img src="./facebook.png" alt="ig" srcset="">
<img src="./instagram.png" alt="mail" srcset="">
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-auth-compat.js"></script>
<script src="./config.js"></script>
<script src="./wishform.js"></script>
</body>
</html>