forgot password page is working now

This commit is contained in:
ChineseChikki
2023-01-24 17:24:06 +01:00
parent d096e33bc0
commit 475949b8b8
3 changed files with 22 additions and 4 deletions
@@ -1,5 +1,6 @@
import React from "react";
import titleShape from "../../../assets/images/shape/title-shape-two.svg";
import { Link } from 'react-router-dom';
import straightLine from "../../../assets/images/shape/straight-line.svg";
import InputCom from "../../Helpers/Inputs/InputCom";
import AuthLayout from "../AuthLayout";
@@ -15,8 +16,8 @@ export default function ForgotPassword() {
<h1 className="sm:text-5xl text-4xl font-bold sm:leading-[74px] text-dark-gray dark:text-white">
Forget Password
</h1>
<div className="shape sm:w-[377px] w-[270px] -mt-1 ml-5">
<img src={titleShape} alt="shape" />
<div className="shape sm:w-[377px] w-[270px] -mt-1 ml-0">
<img src={straightLine} alt="shape" className="mx-auto block" />
</div>
</div>
<div className="input-area">
@@ -36,6 +37,13 @@ export default function ForgotPassword() {
>
Send Code
</a>
<Link to="/"
className=" my-40 font-bold flex justify-center text-red-500 items-center"
>
Back to Home
</Link>
</div>
</div>
</div>