mirror of
https://github.com/netfun2000/raspberry-wifi-conf.git
synced 2026-02-27 09:45:16 +08:00
Graphics edits
GitIgnore .idea folder Minor graphics changes
This commit is contained in:
+2
-1
@@ -1,3 +1,4 @@
|
||||
/node_modules
|
||||
/npm-debug.log
|
||||
/app/public/external
|
||||
/app/public/external
|
||||
/.idea
|
||||
+1
-9
@@ -233,16 +233,8 @@ html, body {
|
||||
cursor: pointer;
|
||||
}
|
||||
.btn-cancel {
|
||||
background: #881111;
|
||||
top: 90px; left: 20px;
|
||||
}
|
||||
.btn-ok {
|
||||
top: 90px; left: 170px;
|
||||
background: #118811;
|
||||
}
|
||||
.btn-cancel:hover {
|
||||
background: #ff2222;
|
||||
}
|
||||
.btn-ok:hover {
|
||||
background: #22ff22;
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -113,7 +113,7 @@ app.directive("rwcPasswordEntry", function($timeout) {
|
||||
template: [
|
||||
"<div class='rwc-password-entry-container' ng-class='{\"hide-me\": !visible}'>",
|
||||
" <div class='box'>",
|
||||
" <input type = 'password' placeholder = 'Passcode...' ng-model = 'passcode' />",
|
||||
" <input type = 'password' placeholder = 'Password...' ng-model = 'passcode' />",
|
||||
" <div class = 'btn btn-cancel' ng-click = 'reset(null)'>Cancel</div>",
|
||||
" <div class = 'btn btn-ok' ng-click = 'submit()'>Submit</div>",
|
||||
" </div>",
|
||||
|
||||
+6
-2
@@ -2,7 +2,7 @@
|
||||
<html lang="en" ng-app="RpiWifiConfig">
|
||||
|
||||
<head>
|
||||
<title>Rpi Wifi Config</title>
|
||||
<title>Gardenspace Configuration Wizard</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalable=1">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
@@ -16,8 +16,12 @@
|
||||
<body ng-controller = "AppController"
|
||||
ng-keyup = "$event.keyCode == 27 ? change_selection(null) : ''">
|
||||
|
||||
<div>
|
||||
<img src="/assets/img/logo.jpg" alt="Gardenspace Logo" />
|
||||
</div>
|
||||
|
||||
<div class = "page-header">
|
||||
<i class = "fa fa-wifi"></i> Choose a Wifi Ap
|
||||
<i class = "fa fa-wifi"></i> Choose a Wifi AP
|
||||
<a href = "#" ng-click = "rescan()" ng-class = "{ 'active': scan_running }">
|
||||
<i class = "fa fa-refresh"
|
||||
ng-class = "{ 'fa-spin': scan_running }"></i>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.8 KiB |
+3
-3
@@ -3,10 +3,10 @@
|
||||
"wifi_driver_type": "nl80211",
|
||||
|
||||
"access_point": {
|
||||
"force_reconfigure": true,
|
||||
"force_reconfigure": false,
|
||||
"wifi_interface": "wlan0",
|
||||
"ssid": "rpi-config-ap",
|
||||
"passphrase": "zzzzzzzz",
|
||||
"ssid": "gardenspace",
|
||||
"passphrase": "gardenspace",
|
||||
"domain": "rpi.config",
|
||||
"ip_addr": "192.168.44.1",
|
||||
"netmask": "255.255.255.0",
|
||||
|
||||
Reference in New Issue
Block a user