Remove edge glow; prefill MCMS URL from env; drop self-signed-cert option
- Remove the animated neon edge-glow entirely (HTML element + CSS) — it couldn't be made to follow the border reliably on iOS Safari. - Add PFW_MCMS_URL: the web server prefills the login "Host URL" field with it (injected as the input's value in the served index; still editable). Documented in env.example + web README. - Remove the "Accept self-signed TLS certificate" option: the checkbox is gone and both backends now always use rejectUnauthorized:true — MCMS must present a valid certificate. Dropped the acceptSelfSigned plumbing from the renderer and both login handlers. Docs: CLAUDE.md (drop edge-glow section, update login note) + web README. Verified: node --check; no stale refs (in-self-signed / acceptSelfSigned / edge-glow / beamspin); served index carries value="…" only when PFW_MCMS_URL is set, and no self-signed checkbox. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
6f4a315947
commit
ea251c3498
8 changed files with 30 additions and 79 deletions
|
|
@ -6,9 +6,6 @@
|
|||
<link rel="stylesheet" href="app.css" />
|
||||
</head>
|
||||
<body>
|
||||
<!-- Animated neon beam that travels around the screen edge. -->
|
||||
<div id="edge-glow" aria-hidden="true"><div class="beam"></div></div>
|
||||
|
||||
<header class="topbar">
|
||||
<div class="brand">PON Fleet Upgrader</div>
|
||||
<nav id="tabs" class="tabs hidden">
|
||||
|
|
@ -32,10 +29,6 @@
|
|||
<label>Host URL<input id="in-host" type="url" placeholder="https://mcms.example.net" /></label>
|
||||
<label>Email / username<input id="in-user" type="text" autocomplete="username" /></label>
|
||||
<label>Password<input id="in-pass" type="password" autocomplete="current-password" /></label>
|
||||
<label class="inline">
|
||||
<input id="in-self-signed" type="checkbox" checked />
|
||||
Accept self-signed TLS certificate
|
||||
</label>
|
||||
<div class="row">
|
||||
<button id="btn-login" class="primary">Connect</button>
|
||||
<span id="login-error" class="error"></span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue