-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfile.html
93 lines (93 loc) · 3.19 KB
/
Profile.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
<!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 active">
<sl-button type="text">
<img src="/assets/home.svg" />
</sl-button>
</div>
<div class="main-sidebar__item">
<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="profile-header">
<div class="center profile-header__bulb">
<object type="image/svg+xml" data="/assets/Curve.svg"></object>
<div class="profile-header__data">
<img src="/assets/Profile.png" />
<strong>Sorour Eskandari</strong>
<p>sorour_sn</p>
</div>
</div>
</div>
<div class="profile-actions">
<a href="#">
<div class="profile-actions__button shadow purple">
<object type="image/svg+xml" data="/assets/Bookmark.svg"></object>
<p class="big-text">Issued Books</p>
</div>
</a>
<a href="#2">
<div class="profile-actions__button shadow green">
<object type="image/svg+xml" data="/assets/User.svg"></object>
<p class="big-text">Users List</p>
</div>
</a>
<a href="#3">
<div class="profile-actions__button shadow yellow">
<object type="image/svg+xml" data="/assets/Edit.svg"></object>
<p class="big-text">Edit User</p>
</div>
</a>
</div>
<div class="corner-pattern">
<img src="/assets/corner-pattern.png" draggable="false" />
</div>
</div>
</div>
<script src="/scripts.js"></script>
</body>
</html>