-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookDetail.html
96 lines (96 loc) · 3.52 KB
/
BookDetail.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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="shortcut icon" href="assets/favicon.png" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/themes/light.css"
/>
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/shoelace.js"
></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/color.css" />
<link rel="stylesheet" href="/common.css" />
<link rel="stylesheet" href="/style.css" />
<title>Library</title>
</head>
<body>
<div class="app">
<div class="main-sidebar">
<div class="main-sidebar__top">
<div class="main-sidebar__item">
<sl-button type="text">
<img src="/assets/home.svg" />
</sl-button>
</div>
<div class="main-sidebar__item active">
<sl-button type="text">
<img src="/assets/book.svg" />
</sl-button>
</div>
<div class="main-sidebar__item">
<sl-button type="text">
<img src="/assets/users.svg" />
</sl-button>
</div>
</div>
<div class="main-sidebar__bottom">
<div class="main-sidebar__item">
<sl-button type="text">
<img src="/assets/logout.svg" />
</sl-button>
</div>
</div>
</div>
<div class="content">
<div class="header">
<h2>Book Detail</h2>
<p>Sorour Eskandari</p>
</div>
<div class="book-detail">
<div class="book-detail__image">
<img class="shadow" src="https://images-na.ssl-images-amazon.com/images/I/91Y6gyoK8ZL.jpg" onerror="this.src='/assets/imagePlaceholder.png'" />
</div>
<div class="book-detail__credits">
<h4>Chain of Gold</h4>
<h5>Cassandra Clare</h5>
<h5>Penguin Inc</h5>
<p>
Together with the Merry Thieves, Cordelia, James, and Lucie must
follow the trail of the knife-wielding killer through the city’s
most dangerous streets. All the while, each is keeping a shocking
secret: Lucie, that she plans to raise Jesse from the dead;
Cordelia, that she has sworn a dangerous oath of loyalty to a
mysterious power; and James, that he is being drawn further each
night into the dark web of his grandfather, the arch-demon Belial.
And that he himself may be the killer they seek.
</p>
</div>
<div></div>
</div>
<div class="action-bar">
<form>
<input type="hidden" vlaue="username" >
<input type="hidden" value="bookId">
<input type="submit" class="btn btn-outline-warning btn-lg" value="Edit">
</form>
<form>
<input type="hidden" vlaue="username" >
<input type="hidden" value="bookId">
<input type="submit" class="btn btn-success btn-lg" value="Issue">
</form>
</div>
</div>
</div>
</body>
</html>