-
Notifications
You must be signed in to change notification settings - Fork 2
/
updateResults.html
39 lines (39 loc) · 1005 Bytes
/
updateResults.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Last Update Results</title>
<link rel="stylesheet" type="text/css" href="css/semantic.css">
<style>
.field-name {
font-weight: bold;
}
.top-margin {
margin-top: 1em !important;
}
.mopub-update-result-pre {
background: aliceblue;
}
</style>
</head>
<body>
<div class="ui grid container">
<div class="sixteen wide column">
<h3 class="ui header top-margin">Results</h3>
<table class="ui celled blue table">
<thead>
<tr>
<th>Line Item Key</th>
<th>Response</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<script type="text/javascript" src="lib/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="lib/semantic-ricky-modified.js"></script>
<script type="text/javascript" src="js/global/constants.js"></script>
<script type="text/javascript" src="js/pagescripts/updateResults.js"></script>
</body>
</html>