blob: 5d2309b39bb01f49f2f160c0069541f5db5dfb0d (
plain)
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
|
<?php
$buildID = filter_input(INPUT_GET, "uuid", FILTER_UNSAFE_RAW);
$buildID = urlencode($buildID);
?>
<html>
<head>
<title>Gentoaster</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="container">
<div id="header"></div>
<div id="content">
<div id="main">
<div id="finished" class="step">
<h1>That's it!</h1>
<p>
That's all there is to it! We've sent your configuration down to
the kitchen to be toasted, come back later to get your image.
</p>
<p>
You can also click
<a href="status.php?uuid=<?php echo $buildID; ?>">here</a> to
view the status of your build.
</p>
</div>
</div>
<div id="navigation">
</div>
</div>
</div>
</script>
</body>
</html>
|