summaryrefslogtreecommitdiff
path: root/boot/app/key-template.html
diff options
context:
space:
mode:
Diffstat (limited to 'boot/app/key-template.html')
-rwxr-xr-xboot/app/key-template.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/boot/app/key-template.html b/boot/app/key-template.html
new file mode 100755
index 0000000..a1a076b
--- /dev/null
+++ b/boot/app/key-template.html
@@ -0,0 +1,33 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Welcome to Jasper</title>
+ <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans">
+ <link rel="stylesheet" href="../pure-min.css">
+ <link rel="stylesheet" href="../styles.css">
+ </head>
+ <body>
+ <div class="centered">
+ <center>
+ <h2>{{ network }}</h2>
+ <h4>If the network requires one, please enter the password. Otherwise, leave it blank.</h4>
+
+ <form target="index.cgi" method="POST">
+
+ <input id="password" name="password" type="password" tabindex="1"></input>
+ <input id="network" name="network" type="hidden" value="{{ network }}"></input>
+
+ <br /><br />
+
+ <button type="submit" class="pure-button pure-input-1" tabindex="3">Back</button> <button type="submit" class="pure-button pure-input-1 notice" tabindex="2">Continue</button>
+
+ </form>
+ </center>
+
+ <script>
+ document.getElementById("password").focus();
+ </script>
+ </body>
+</html>