mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 14:07:20 +03:00
fix(field): increase opacity to 0.7
This commit is contained in:
parent
745468a286
commit
9738bd6dfa
@ -123,7 +123,6 @@ export default function ResetPassword({
|
|||||||
setPasswordValidations(validations);
|
setPasswordValidations(validations);
|
||||||
},
|
},
|
||||||
})}
|
})}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
onClickIcon={() => toggleShowPassword(!showPassword)}
|
onClickIcon={() => toggleShowPassword(!showPassword)}
|
||||||
icon={showPassword ? SVG.EyeOff : SVG.Eye}
|
icon={showPassword ? SVG.EyeOff : SVG.Eye}
|
||||||
/>
|
/>
|
||||||
@ -161,7 +160,6 @@ export default function ResetPassword({
|
|||||||
type="email"
|
type="email"
|
||||||
full
|
full
|
||||||
{...getFieldProps("email")}
|
{...getFieldProps("email")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
/>
|
/>
|
||||||
<AnimateSharedLayout>
|
<AnimateSharedLayout>
|
||||||
<motion.div layout>
|
<motion.div layout>
|
||||||
|
@ -163,7 +163,6 @@ export default function Signin({
|
|||||||
type="email"
|
type="email"
|
||||||
full
|
full
|
||||||
{...getEmailFieldProps("email")}
|
{...getEmailFieldProps("email")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
/>
|
/>
|
||||||
<AnimateSharedLayout>
|
<AnimateSharedLayout>
|
||||||
<motion.div layout>
|
<motion.div layout>
|
||||||
@ -202,7 +201,6 @@ export default function Signin({
|
|||||||
onClickIcon={() => toggleShowPassword(!showPassword)}
|
onClickIcon={() => toggleShowPassword(!showPassword)}
|
||||||
icon={showPassword ? SVG.EyeOff : SVG.Eye}
|
icon={showPassword ? SVG.EyeOff : SVG.Eye}
|
||||||
{...getFieldProps("password")}
|
{...getFieldProps("password")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
/>
|
/>
|
||||||
<AnimateSharedLayout>
|
<AnimateSharedLayout>
|
||||||
<motion.div layout>
|
<motion.div layout>
|
||||||
|
@ -50,21 +50,20 @@ const useCheckUser = () => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const createValidations = (validateUsername) => async (
|
const createValidations =
|
||||||
{ username, password, acceptTerms },
|
(validateUsername) =>
|
||||||
errors
|
async ({ username, password, acceptTerms }, errors) => {
|
||||||
) => {
|
await validateUsername({ username }, errors);
|
||||||
await validateUsername({ username }, errors);
|
|
||||||
|
|
||||||
if (!Validations.username(username)) errors.username = "Invalid username";
|
if (!Validations.username(username)) errors.username = "Invalid username";
|
||||||
// Note(amine): username should not be an email
|
// Note(amine): username should not be an email
|
||||||
if (Validations.email(username)) errors.username = "Username shouldn't be an email";
|
if (Validations.email(username)) errors.username = "Username shouldn't be an email";
|
||||||
|
|
||||||
if (!Validations.password(password)) errors.password = "Incorrect password";
|
if (!Validations.password(password)) errors.password = "Incorrect password";
|
||||||
|
|
||||||
if (!acceptTerms) errors.acceptTerms = "Must accept terms and conditions";
|
if (!acceptTerms) errors.acceptTerms = "Must accept terms and conditions";
|
||||||
return errors;
|
return errors;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function Signup({ verifyEmail, createUser, resendEmailVerification }) {
|
export default function Signup({ verifyEmail, createUser, resendEmailVerification }) {
|
||||||
const [passwordValidations, setPasswordValidations] = React.useState(
|
const [passwordValidations, setPasswordValidations] = React.useState(
|
||||||
@ -119,7 +118,6 @@ export default function Signup({ verifyEmail, createUser, resendEmailVerificatio
|
|||||||
}
|
}
|
||||||
full
|
full
|
||||||
{...getFieldProps("username")}
|
{...getFieldProps("username")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<motion.div layout>
|
<motion.div layout>
|
||||||
@ -136,7 +134,6 @@ export default function Signup({ verifyEmail, createUser, resendEmailVerificatio
|
|||||||
setPasswordValidations(validations);
|
setPasswordValidations(validations);
|
||||||
},
|
},
|
||||||
})}
|
})}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
onClickIcon={() => toggleShowPassword(!showPassword)}
|
onClickIcon={() => toggleShowPassword(!showPassword)}
|
||||||
icon={showPassword ? SVG.EyeOff : SVG.Eye}
|
icon={showPassword ? SVG.EyeOff : SVG.Eye}
|
||||||
/>
|
/>
|
||||||
|
@ -103,7 +103,6 @@ export default function TwitterLinking({
|
|||||||
type="email"
|
type="email"
|
||||||
full
|
full
|
||||||
{...getEmailFieldProps("email")}
|
{...getEmailFieldProps("email")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
/>
|
/>
|
||||||
<AnimateSharedLayout>
|
<AnimateSharedLayout>
|
||||||
<motion.div layout>
|
<motion.div layout>
|
||||||
|
@ -144,7 +144,6 @@ export default function TwitterSignup({
|
|||||||
: null
|
: null
|
||||||
}
|
}
|
||||||
{...getFieldProps("username")}
|
{...getFieldProps("username")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
full
|
full
|
||||||
/>
|
/>
|
||||||
<AnimateSharedLayout>
|
<AnimateSharedLayout>
|
||||||
@ -157,7 +156,6 @@ export default function TwitterSignup({
|
|||||||
type="email"
|
type="email"
|
||||||
full
|
full
|
||||||
{...getFieldProps("email")}
|
{...getFieldProps("email")}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<motion.div layout>
|
<motion.div layout>
|
||||||
|
@ -113,7 +113,6 @@ export default function Verification({ onVerify, title = DEFAULT_TITLE, onResend
|
|||||||
}
|
}
|
||||||
textStyle={{ width: "100% !important" }}
|
textStyle={{ width: "100% !important" }}
|
||||||
containerStyle={{ marginTop: "28px" }}
|
containerStyle={{ marginTop: "28px" }}
|
||||||
style={{ backgroundColor: "rgba(242,242,247,0.5)" }}
|
|
||||||
name="pin"
|
name="pin"
|
||||||
type="pin"
|
type="pin"
|
||||||
{...getFieldProps()}
|
{...getFieldProps()}
|
||||||
|
Loading…
Reference in New Issue
Block a user