Drop "Vibe, Vote, Veto." from the auth screen tagline

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
King Omar 2026-07-22 18:47:29 +10:00
parent 726d9d53ba
commit e075629d4d
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ function renderAuth() {
const form = el("form", { className: "auth-card" }); const form = el("form", { className: "auth-card" });
const title = el("h1", { textContent: "Cipher" }); const title = el("h1", { textContent: "Cipher" });
const brandTag = el("div", { className: "brand-tag", textContent: "A Radical Party Project" }); const brandTag = el("div", { className: "brand-tag", textContent: "A Radical Party Project" });
const tag = el("p", { className: "tagline", textContent: "Radically private. End-to-end encrypted. Vibe, Vote, Veto." }); const tag = el("p", { className: "tagline", textContent: "Radically private. End-to-end encrypted." });
const err = el("div", { className: "auth-err" }); const err = el("div", { className: "auth-err" });
const username = el("input", { placeholder: "username", autocomplete: "username", required: true }); const username = el("input", { placeholder: "username", autocomplete: "username", required: true });

View file

@ -1,7 +1,7 @@
// Service worker: offline app shell + Web Push wake-up. // Service worker: offline app shell + Web Push wake-up.
// It never touches message plaintext — decryption happens only in the page. // It never touches message plaintext — decryption happens only in the page.
const CACHE = "cipher-v9"; const CACHE = "cipher-v10";
const SHELL = [ const SHELL = [
"/", "/",
"/index.html", "/index.html",