mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
autocompletion
This commit is contained in:
parent
f3146b9a00
commit
2def74cb32
4 changed files with 41 additions and 25 deletions
|
@ -3,6 +3,8 @@ import { TextInputControl } from "./TextInputControl";
|
|||
export function AuthInputBox(props: {
|
||||
value?: string;
|
||||
label?: string;
|
||||
name?: string;
|
||||
autoComplete?: string;
|
||||
placeholder?: string;
|
||||
onChange?: (data: string) => void;
|
||||
}) {
|
||||
|
@ -12,7 +14,9 @@ export function AuthInputBox(props: {
|
|||
<p className="font-bold text-white">{props.label}</p>
|
||||
) : null}
|
||||
<TextInputControl
|
||||
name={props.name}
|
||||
value={props.value}
|
||||
autoComplete={props.autoComplete}
|
||||
onChange={props.onChange}
|
||||
placeholder={props.placeholder}
|
||||
className="w-full flex-1 bg-authentication-inputBg px-4 py-3 text-search-text focus:outline-none rounded-lg placeholder:text-gray-700"
|
||||
|
|
|
@ -3,6 +3,8 @@ export interface TextInputControlPropsNoLabel {
|
|||
onUnFocus?: () => void;
|
||||
onFocus?: () => void;
|
||||
value?: string;
|
||||
name?: string;
|
||||
autoComplete?: string;
|
||||
placeholder?: string;
|
||||
className?: string;
|
||||
}
|
||||
|
@ -16,6 +18,8 @@ export function TextInputControl({
|
|||
onUnFocus,
|
||||
value,
|
||||
label,
|
||||
name,
|
||||
autoComplete,
|
||||
className,
|
||||
placeholder,
|
||||
onFocus,
|
||||
|
@ -27,6 +31,8 @@ export function TextInputControl({
|
|||
placeholder={placeholder}
|
||||
onChange={(e) => onChange && onChange(e.target.value)}
|
||||
value={value}
|
||||
name={name}
|
||||
autoComplete={autoComplete}
|
||||
onBlur={() => onUnFocus && onUnFocus()}
|
||||
onFocus={() => onFocus?.()}
|
||||
/>
|
||||
|
|
|
@ -58,6 +58,8 @@ export function LoginFormPart(props: LoginFormPartProps) {
|
|||
<AuthInputBox
|
||||
label="12-Word Passphrase"
|
||||
value={mnemonic}
|
||||
autoComplete="username"
|
||||
name="username"
|
||||
onChange={setMnemonic}
|
||||
placeholder="Passphrase"
|
||||
/>
|
||||
|
|
|
@ -82,6 +82,7 @@ export function VerifyPassphrase(props: VerifyPassphraseProps) {
|
|||
|
||||
return (
|
||||
<LargeCard>
|
||||
<form>
|
||||
<LargeCardText
|
||||
icon={<Icon icon={Icons.CIRCLE_CHECK} />}
|
||||
title="Enter your passphrase"
|
||||
|
@ -91,6 +92,8 @@ export function VerifyPassphrase(props: VerifyPassphraseProps) {
|
|||
</LargeCardText>
|
||||
<AuthInputBox
|
||||
label="Your passphrase"
|
||||
autoComplete="username"
|
||||
name="username"
|
||||
value={mnemonic}
|
||||
onChange={setMnemonic}
|
||||
/>
|
||||
|
@ -108,6 +111,7 @@ export function VerifyPassphrase(props: VerifyPassphraseProps) {
|
|||
Register
|
||||
</Button>
|
||||
</LargeCardButtons>
|
||||
</form>
|
||||
</LargeCard>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue