-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsample.html
45 lines (45 loc) · 3.21 KB
/
sample.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/styles.css">
<script>
window.ENV = {
REPLACE_IFRAME: REPLACE_IFRAME_FROM_ENV
}
</script>
<script src="jsapi.js"></script>
</head>
<body>
<div style="display: flex; flex-direction: column; width: 100%; justify-content: center; align-self: flex-start;">
<form id="filter_form" style="padding-top: 10px; color: black;" onsubmit="form_submit(event)">
<div>Input a column and value to filter by:</div>
<input id="column_input" type="text" id="fname" name="fname" placeholder="Column">
<input id="value_input" type="text" id="lname" name="lname" placeholder="Value">
<div>
<input type="submit" value="Submit">
<input type="button" value="Reset" onclick="reset_form()">
</div>
</form>
<div style="color: black; text-align: center; font-size: 40px; font-weight: 700;"><span>Sales Charts for </span><span style="text-transform: capitalize">USER</span></div>
<div style="display: flex; justify-content: space-evenly; margin-top: 40px; width: 1200px; height: 600px; background-color: white; border-width: 2px; border-style: inset; color: black; font-size: 26px;">
<iframe id="iframe1" src="/embed/items/1" width="100%" height="100%" scrolling="no" style="border: none"></iframe>
</div>
<!-- <div style="display: flex; justify-content: space-evenly; margin-top: 40px; width: 1200px; height: 600px; background-color: white; border-width: 2px; border-style: inset; color: black; font-size: 26px;">
<iframe id="iframe2" src="/embed/items/2" width="100%" height="100%" scrolling="no" style="border: none"></iframe>
</div>
<div style="display: flex; justify-content: space-evenly; margin-top: 40px; width: 1200px; height: 600px; background-color: white; border-width: 2px; border-style: inset; color: black; font-size: 26px;">
<iframe id="iframe3" src="/embed/items/3" width="100%" height="100%" scrolling="no" style="border: none"></iframe>
</div>
<div style="display: flex; justify-content: space-evenly; margin-top: 40px; width: 1200px; height: 600px; background-color: white; border-width: 2px; border-style: inset; color: black; font-size: 26px;">
<iframe id="iframe4" src="/embed/items/4" width="100%" height="100%" scrolling="no" style="border: none"></iframe>
</div>
<div style="display: flex; justify-content: space-evenly; margin-top: 40px; width: 1200px; height: 600px; background-color: white; border-width: 2px; border-style: inset; color: black; font-size: 26px;">
<iframe id="iframe5" src="/embed/items/5" width="100%" height="100%" scrolling="no" style="border: none"></iframe>
</div>
<div style="display: flex; justify-content: space-evenly; margin-top: 40px; width: 1200px; height: 600px; background-color: white; border-width: 2px; border-style: inset; color: black; font-size: 26px;">
<iframe id="iframe6" src="/embed/items/6" width="100%" height="100%" scrolling="no" style="border: none"></iframe>
</div> -->
<a href="/logout" style="text-align: center; display: block; color: white; margin-top: 30px; font-size: 20pt;" class="button">Logout</a>
</div>
</body>
</html>