-
Notifications
You must be signed in to change notification settings - Fork 1
/
requestService_confirm.html
110 lines (109 loc) · 3.14 KB
/
requestService_confirm.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logo_no.png">
<title>UPSLIS Library Services</title>
<!--TailWind CSS-->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<style>
body {
}
.services {
display: flex;
align-items: center;
margin: 50px;
}
.services-footer {
margin: 20px 60px;
}
.services-footer button {
font-size: 14px;
background-color: #fddc58;
border: none;
padding: 15px 32px;
cursor: pointer;
border-radius: 8px;
display: inline;
justify-content: center;
align-items: center;
}
section button {
font-size: 21px;
color: white;
background-color: #e5c53f;
border: none;
padding: 15px 32px;
cursor: pointer;
border-radius: 8px;
display: inline;
justify-content: center;
align-items: center;
}
/*::-webkit-scrollbar {
height: 10px;
}
/*::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 25px;
}
::-webkit-scrollbar-thumb {
border-radius: 25px;
}
::-webkit-scrollbar-thumb:hover {
background: #fddc58;
}*/
</style>
<body>
<header class="services">
<a href="/home"><img class="h-20 w-auto mr-2" src="library_logo.jpg" alt="Logo"></a>
<div>
<a href="/home" class="text-xl font-bold text-amber-800">UP SLIS LIBRARY<br></a>
<a href="/dashboard" class="text-sm font-bold">Student0441</a>
</div>
</header>
<div class="flex flex-column gap-4 p-7">
<section class="block basis-3/5 text-center space-y-5">
<h1 class="text-5xl font-bold">Requests</h1>
<img src="gabi_thanksRequest.png" alt="Mascot" class="inline max-h-96 mx-1/2" />
</section>
<section class="block basis-1/5 text-center border-2 py-3 px-10 rounded-xl space-y-5">
<h2 class="font-bold text-2xl">Request details review</h2>
<table class="w-full table-fixed">
<tbody>
<tr>
<td>Name</td>
<td>Juan Dela Cruz</td>
</tr>
</tbody>
</table>
<hr />
<table class="w-full table-fixed">
<tbody>
<tr>
<td>Date</td>
<td>(01-05-24)</td>
</tr>
<tr>
<td>Service</td>
<td>(-----)</td>
</tr>
<tr>
<td>Timeslot</td>
<td>(8am-9am)</td>
</tr>
</tbody>
</table>
</section>
</div>
</body>
<footer class="flex">
<div class="services-footer">
<button>ITEM SELECTION</button>
<button>ITEM DETAILS</button>
<button>SUBMISSION</button>
</div>
</footer>
</html>