-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.html
More file actions
64 lines (57 loc) · 1.78 KB
/
Copy pathlaunch.html
File metadata and controls
64 lines (57 loc) · 1.78 KB
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
<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>{{ title }}</title>
<style>
nav {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
gap: 20%;
font-family: 'Lato Extended', Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
nav div {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
gap: 10%;
}
button {
height: 28px;
border-style: solid;
border-radius: 3px;
font-size: 16px;
cursor: pointer;
}
button[type="button"] {
background-color: rgb(245, 245, 245);
border-color: rgb(199, 205, 209);
color: rgb(45, 59, 69);
}
button[type="submit"] {
background-color: rgb(3, 116, 181);
border-color: rgb(3, 99, 154);
color: white;
margin-right: 1rem
}
</style>
</head>
<body>
<nav>
<h1>{{ title }}</h1>
<span>{{ description }}</span>
<form id="submit-assignment"></form>
<div>
<button type="button" onclick="window.close();">Close</button>
<button type="submit" form="submit-assignment" formmethod="post"
formaction="http://ipylti.docker/submit/{{ launch_id }}">Submit</button>
</div>
</nav>
<section class="content">
<iframe src="{{ launch_url }}" frameborder="0" border="0" cellspacing="0"
style="border-style: none;width: 100%; height: 800px;"></iframe>
</section>
</body>
</html>