mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-07 14:55:18 -04:00
43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Hotspot Page</title>
|
|
<link href="/static/css/screenly.css" rel="stylesheet"/>
|
|
<style type="text/css">
|
|
html, body {
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="splash container d-table">
|
|
<div class="col-12 d-table-cell align-middle">
|
|
<div class="splash-body p-5">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="logo-container page-header text-center">
|
|
<img src="/static/img/screenly_ose_logo_white_large.png" class="img-fluid"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
<p>No network connection were found. An access point has been created. <br>To configure WiFi networking,
|
|
simply connect to the access point <br>using your computer or mobile device</p>
|
|
<div class="form-actions">
|
|
<span>
|
|
SSID: {{ context.network }}
|
|
<br>
|
|
Password: {{ context.ssid_pswd }}
|
|
<br>
|
|
Address: {{ context.address }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|