forked from crowetic/commerce
Forgot Password
This commit is contained in:
parent
8bb39b3a83
commit
6f19fee350
@ -6,3 +6,7 @@
|
|||||||
.modal {
|
.modal {
|
||||||
@apply bg-primary p-12 border border-accents-2;
|
@apply bg-primary p-12 border border-accents-2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal:focus {
|
||||||
|
@apply outline-none;
|
||||||
|
}
|
||||||
|
@ -1,12 +1,32 @@
|
|||||||
import { Layout } from '@components/core'
|
import { Layout } from '@components/core'
|
||||||
import { Container } from '@components/ui'
|
import { Logo, Modal, Button } from '@components/ui'
|
||||||
|
|
||||||
export default function ForgotPassword() {
|
export default function ForgotPassword() {
|
||||||
return (
|
return (
|
||||||
<Container>
|
<div className="pb-20">
|
||||||
<h2>Forgot Password</h2>
|
<Modal close={() => {}}>
|
||||||
<p></p>
|
<div className="h-80 w-80 flex flex-col justify-between py-3 px-3">
|
||||||
</Container>
|
<div className="flex justify-center pb-12 ">
|
||||||
|
<Logo width="64px" height="64px" />
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col space-y-3">
|
||||||
|
<div className="border border-accents-3 text-accents-6">
|
||||||
|
<input
|
||||||
|
placeholder="Email"
|
||||||
|
className="focus:outline-none bg-primary focus:shadow-outline-gray border-none py-2 px-6 w-full appearance-none transition duration-150 ease-in-out placeholder-accents-5 pr-10"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Button variant="slim">Recover Password</Button>
|
||||||
|
<span className="pt-3 text-center text-sm">
|
||||||
|
<span className="text-accents-7">Don't have an account?</span>
|
||||||
|
{` `}
|
||||||
|
<a className="text-accent-9 font-bold hover:underline cursor-pointer">
|
||||||
|
Sign Up
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user