Add WebUI authentication
This commit is contained in:
parent
aa1c9bb4af
commit
ad9e35a268
8 changed files with 102 additions and 14 deletions
|
@ -38,7 +38,10 @@
|
|||
"luxLightToggle": "Automatisches Umschalten des Frontlichts bei Lux",
|
||||
"wpTimeout": "WiFi-Konfigurationsportal timeout",
|
||||
"useNostr": "Nostr-Datenquelle verwenden",
|
||||
"flDisable": "Displaybeleuchtung deaktivieren"
|
||||
"flDisable": "Displaybeleuchtung deaktivieren",
|
||||
"httpAuthUser": "WebUI-Benutzername",
|
||||
"httpAuthPass": "WebUI-Passwort",
|
||||
"httpAuthText": "Schützt nur die WebUI mit einem Passwort, nicht API-Aufrufe."
|
||||
},
|
||||
"control": {
|
||||
"systemInfo": "Systeminfo",
|
||||
|
|
|
@ -47,7 +47,11 @@
|
|||
"nostrZapPubkey": "Nostr Zap pubkey",
|
||||
"invalidNostrPubkey": "Invalid Nostr pubkey, note that your pubkey does NOT start with npub.",
|
||||
"convertingValidNpub": "Converting valid npub to pubkey",
|
||||
"flDisable": "Disable frontlight"
|
||||
"flDisable": "Disable frontlight",
|
||||
"httpAuthEnabled": "Require authentication for WebUI",
|
||||
"httpAuthUser": "WebUI Username",
|
||||
"httpAuthPass": "WebUI Password",
|
||||
"httpAuthText": "Only password-protects WebUI, not API-calls."
|
||||
},
|
||||
"control": {
|
||||
"systemInfo": "System info",
|
||||
|
|
|
@ -37,7 +37,10 @@
|
|||
"luxLightToggle": "Cambio automático de luz frontal en lux",
|
||||
"wpTimeout": "Portal de configuración WiFi timeout",
|
||||
"useNostr": "Utilice la fuente de datos Nostr",
|
||||
"flDisable": "Desactivar luz de la pantalla"
|
||||
"flDisable": "Desactivar luz de la pantalla",
|
||||
"httpAuthUser": "Nombre de usuario WebUI",
|
||||
"httpAuthPass": "Contraseña WebUI",
|
||||
"httpAuthText": "Solo la WebUI está protegida con contraseña, no las llamadas API."
|
||||
},
|
||||
"control": {
|
||||
"turnOff": "Apagar",
|
||||
|
|
|
@ -38,7 +38,10 @@
|
|||
"luxLightToggle": "Schakelen displaylicht op lux",
|
||||
"wpTimeout": "WiFi-config-portal timeout",
|
||||
"useNostr": "Gebruik Nostr-gegevensbron",
|
||||
"flDisable": "Schakel Displaylicht uit"
|
||||
"flDisable": "Schakel Displaylicht uit",
|
||||
"httpAuthUser": "WebUI-gebruikersnaam",
|
||||
"httpAuthPass": "WebUI-wachtwoord",
|
||||
"httpAuthText": "Beveiligd enkel WebUI, niet de API."
|
||||
},
|
||||
"control": {
|
||||
"systemInfo": "Systeeminformatie",
|
||||
|
|
|
@ -7,6 +7,12 @@
|
|||
@import '@fontsource/oswald/latin-400.css';
|
||||
@import './satsymbol';
|
||||
|
||||
$bootstrap-icons-font: 'bootstrap-icons' !default;
|
||||
$bootstrap-icons-font-dir: 'bootstrap-icons/font//fonts' !default;
|
||||
$bootstrap-icons-font-file: '#{$bootstrap-icons-font-dir}/#{$bootstrap-icons-font}' !default;
|
||||
|
||||
@import 'bootstrap-icons/font/bootstrap-icons.scss';
|
||||
|
||||
$color-mode-type: media-query;
|
||||
$font-family-base: 'Ubuntu';
|
||||
$font-size-base: 0.9rem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue