-
Notifications
You must be signed in to change notification settings - Fork 0
/
testformresponseiframe.html
50 lines (33 loc) · 1.45 KB
/
testformresponseiframe.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
<!DOCTYPE html>
<html>
<head>
<title>UIMP Thursday Evals Optimiser</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://arifd.github.io/UIMPThursdayEvalsOptimiser/style.css">
<link rel="stylesheet" type="text/css" href="https://arifd.github.io/UIMPThursdayEvalsOptimiser/buttons.css">
<script src="https://arifd.github.io/UIMPThursdayEvalsOptimiser/formpluginlibrary.js" type="text/javascript"></script>
<script src="https://arifd.github.io/UIMPThursdayEvalsOptimiser/optimiserlibrary.js" type="text/javascript"></script>
</head>
<body>
<script>
function nextForm() {
applyClass('exit-right',document.getElementById("formResponseContainer"),true);
}
</script>
<!-- FORM RESPONSE SECTION -->
<div class="container intro-right" id="formResponseContainer">
<div class="titlebar">
<h1 id="formResponseTitle">Status of: Penelope Cruz</h1>
</div>
<iframe name="formResponseIframe" id="formResponseIframeId" style="border: 0px; width: 100%; height: 50vh" src="https://css-tricks.com"></iframe>
<!-- div to make button appear at bottom -->
<div style="width: 100%; position: sticky; bottom: 0; display: flex; align-items: center; justify-content: center;">
<div class="progress-btn button dark" id="submitButton" onclick="nextForm()" data-progress-style="indefinite">
<div class="btn">Dismiss</div>
<div class="progress"></div>
</div>
</div>
<!-- end button -->
</div>
</body>
</html>