blob: fa953c7db4bdb92b8d9ce02743e5b87cf8c92d22 (
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
|
<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 htmlspecialchars($_GET["uuid"]); ?>">here</a> to
view the status of your build.
</p>
</div>
</div>
<div id="navigation">
</div>
</div>
</div>
</script>
</body>
</html>
|