blob: e8ad45b1ccd62beae7d94c2243a4af87bab7a021 (
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
|
<!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>
<h1>Welcome to Jasper</h1>
<h3>Please select a wifi network</h3>
<form target="index.cgi" method="POST">
<select name="network">
{{ select_code }}
</select>
<br /><br />
<button type="submit" class="pure-button pure-input-1 notice">Continue</button>
</form>
</center>
</body>
</html>
|