-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 979 Bytes
/
index.html
File metadata and controls
53 lines (48 loc) · 979 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Report Viewer</title>
<style>
body {
margin: 0;
display: flex;
flex-direction: column;
height: 100vh;
}
.menu {
background-color: lightblue;
padding: 10px 20px;
display: flex;
justify-content: flex-start;
gap: 10px;
font-weight: bold;
font-size: 1.1em;
}
.menu a {
text-decoration: none;
}
.separator {
margin: 0 10px;
}
.content {
flex-grow: 1;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div class="menu">
<a href="report_user.html" target="reportFrame">Sort by user</a>
<span class="separator">|</span>
<a href="report_days.html" target="reportFrame">Sort by days open</a>
</div>
<div class="content">
<iframe name="reportFrame" src="report_user.html"></iframe>
</div>
</body>
</html>