aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/finished.php')
-rw-r--r--web/finished.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/web/finished.php b/web/finished.php
index fa953c7..5d2309b 100644
--- a/web/finished.php
+++ b/web/finished.php
@@ -1,3 +1,9 @@
+<?php
+
+$buildID = filter_input(INPUT_GET, "uuid", FILTER_UNSAFE_RAW);
+$buildID = urlencode($buildID);
+
+?>
<html>
<head>
<title>Gentoaster</title>
@@ -11,11 +17,12 @@
<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.
+ 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
+ You can also click
+ <a href="status.php?uuid=<?php echo $buildID; ?>">here</a> to
view the status of your build.
</p>
</div>