Rebrand product as Manyangles and add Authentik
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user