first commit

This commit is contained in:
2023-06-06 19:34:45 +02:00
commit 356d7de2cf
29 changed files with 2629 additions and 0 deletions

0
files/.gitkeep Normal file
View File

BIN
files/bootstrap.min.css.gz Normal file

Binary file not shown.

BIN
files/bootstrap.min.js.gz Normal file

Binary file not shown.

BIN
files/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

25
files/index.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Safe control panel">
<title>Safe control panel</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha256-LA89z+k9fjgMKQ/kq4OO2Mrf8VltYml/VES+Rg0fh20=" crossorigin="anonymous" />
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="spinner"><div class="rect1"></div> <div class="rect2"></div> <div class="rect3"></div> <div class="rect4"></div> <div class="rect5"></div></div>
<noscript><center><h1>Your browser does not support JavaScript!</h1></center></noscript>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/nunjucks/3.0.1/nunjucks.min.js" integrity="sha256-sh9FYQZVVLprCQB3/IcNyCRrZwu9hZ+xLHhUszDfsK4=" crossorigin="anonymous"></script>
<script src="templates.js"></script>
<script src="main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha256-pS96pU17yq+gVu4KBQJi38VpSuKN7otMrDQprzf/DWY=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha256-5+02zu5UULQkO7w1GIr6vftCgMfFdZcAHeDtFnKZsBs=" crossorigin="anonymous"></script>
</html>

Binary file not shown.

BIN
files/main.css.gz Normal file

Binary file not shown.

BIN
files/main.js.gz Normal file

Binary file not shown.

BIN
files/nunjucks.min.js.gz Normal file

Binary file not shown.

BIN
files/popper.min.js.gz Normal file

Binary file not shown.

25
files/settings.conf Normal file
View File

@ -0,0 +1,25 @@
{
"username": "admin",
"password": "password",
"network": {
"ssid": "",
"passphrase": "",
"dhcp": true,
"hostname": "safeweb",
"address": "0.0.0.0",
"netmask": "0.0.0.0",
"gateway": "0.0.0.0"
},
"lock_code": [
0,
1,
2,
3,
4,
5,
6,
7
],
"fingerprints": [
]
}

BIN
files/templates.js.gz Normal file

Binary file not shown.

BIN
files/wifi-sprites.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB