Rebrand product as Manyangles and add Authentik

This commit is contained in:
2026-09-08 09:17:25 -04:00
parent 27e2f196eb
commit f5702caaea
37 changed files with 630 additions and 237 deletions
+9 -2
View File
@@ -103,8 +103,15 @@ export function SignUpForm({
<Input
id="invite"
value={inviteCode}
onChange={(event) => setInviteCode(event.target.value)}
placeholder="VELLUM-…"
onChange={(event) =>
setInviteCode(event.target.value.toUpperCase().replace(/[^A-Z0-9]/g, ""))
}
placeholder="AB12"
minLength={4}
maxLength={4}
pattern="[A-Za-z0-9]{4}"
autoCapitalize="characters"
autoCorrect="off"
className="tap-target"
required={requireInvite}
/>