-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (83 loc) · 2.41 KB
/
index.html
File metadata and controls
84 lines (83 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>library</title>
<link rel="stylesheet" href="lib.css" />
</head>
<body>
<div class="dim"></div>
<div class="logn">
<button class="cnl"></button>
<h3 style="justify-self: center">Welcome Back!</h3>
User Name: <br /><input type="text" id="uName" /><br />
Password: <br /><input type="text" /> <br />
<button class="add" id="Log">Login</button>
<button class="add" style="margin-top: 18px">Sign Up</button>
</div>
<header>
<img src="../lib/user.svg" alt="" class="sv" />
<h6 id="dName">visitor</h6>
<h3>Cosmic library</h3>
</header>
<main>
<form>
<h4>Add a Book</h4>
Title :
<input type="text" id="Btitle" placeholder="Wuthring Heights" />
Auther Name:
<input type="text" id="Bauthor" placeholder="Emily Bronte" />
Pages
<input type="text" id="Bpages" placeholder="400" />
Finished?
<div class="Bchk">
<input type="checkbox" id="Bstatus" />
<label for="Bstatus" style="bottom: 85px">Read</label>
</div>
<button
type="submit"
class="add"
onclick="addBookToLibrary()"
id="insertB"
>
Add My Book!
</button>
</form>
<div class="shelf"></div>
<div>
<p>to Add books Click this magic button here</p>
<button class="add" id="newB">+</button>
</div>
</main>
<div class="gr-bg">
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="goo">
<feGaussianBlur
in="SourceGraphic"
stdDeviation="10"
result="blur"
/>
<feColorMatrix
in="blur"
mode="matrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -8"
result="goo"
/>
<feBlend in="SourceGraphic" in2="goo" />
</filter>
</defs>
</svg>
<div class="gr-con">
<div class="g1"></div>
<div class="g2"></div>
<div class="g3"></div>
<div class="g4"></div>
<div class="g5"></div>
<div class="inter"></div>
</div>
</div>
<script src="../lib/lib.js" defer></script>
</body>
</html>