Skip to content

Commit

Permalink
Merge pull request #113 from Difuster/check-styles-rem-pass
Browse files Browse the repository at this point in the history
checked styles in remind-pass
  • Loading branch information
dzencot authored Dec 12, 2022
2 parents e3a0060 + fc85cdc commit a1f1e8a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/javascript/Pages/RemindPassword.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export function RemindPassword() {

const { handleBlur, handleChange, handleSubmit, values } = formik;
return (
<Container className="h-100">
<Container className="h-100 bg-dark" fluid>
<Row className="justify-content-center align-content-center h-100">
<Col xs={12} md={6} xxl={5} className="mt-5">
<Card className="shadow-sm">
<Col xs={12} md={6} xxl={5} className="mt-5 mb-5">
<Card className="shadow-sm bg-dark text-white">
<Card.Body className="p-lg-4 p-xl-5">
<h1 className="mb-4 fw-light">{t('remindPass.pageHeader')}</h1>
<div className="pt-lg-3">
Expand All @@ -46,7 +46,7 @@ export function RemindPassword() {
onChange={handleChange}
onBlur={handleBlur}
value={values.email}
className="form-input"
className="form-input bg-dark text-white"
name="email"
id="email"
autoComplete="email"
Expand All @@ -70,15 +70,15 @@ export function RemindPassword() {
<span className="text-muted">
{t('remindPass.footer.signUpHeader')}
</span>
<a className="link-dark" href={routes.signUpPagePath()}>
<a className="link-light" href={routes.signUpPagePath()}>
{t('remindPass.footer.signUp')}
</a>
</div>
<div>
<span className="text-muted">
{t('remindPass.footer.signInHeader')}
</span>
<a className="link-dark" href={routes.loginPagePath()}>
<a className="link-light" href={routes.loginPagePath()}>
{t('remindPass.footer.signIn')}
</a>
</div>
Expand Down

0 comments on commit a1f1e8a

Please sign in to comment.