Compare commits

...

1 Commits

Author SHA1 Message Date
DESKTOP-QHP1O2H\MIKE c8650a8b59 added return home link and straight underline 2023-01-25 05:30:27 -05:00
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<svg width="379" height="31" viewBox="0 0 379 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 29.5C18.8333 21 68.4183 8.72179 121.5 18.5C178.5 29 365.5 43.5 378 1.5" stroke="url(#paint0_linear_7_3645)" stroke-width="2" stroke-linecap="round"/>
<path d="M0,0 379,0" stroke="url(#paint0_linear_7_3645)" stroke-width="2" stroke-linecap="round"/>
<defs>
<linearGradient id="paint0_linear_7_3645" x1="1" y1="1.5" x2="5.52687" y2="60.7337" gradientUnits="userSpaceOnUse">
<stop stop-color="#F539F8"/>

Before

Width:  |  Height:  |  Size: 532 B

After

Width:  |  Height:  |  Size: 469 B

@@ -1,4 +1,5 @@
import React from "react";
import { Link } from "react-router-dom";
import titleShape from "../../../assets/images/shape/title-shape-two.svg";
import InputCom from "../../Helpers/Inputs/InputCom";
import AuthLayout from "../AuthLayout";
@@ -15,7 +16,7 @@ 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">
<div className="shape">
<img src={titleShape} alt="shape" />
</div>
</div>
@@ -38,6 +39,9 @@ export default function ForgotPassword() {
</a>
</div>
</div>
<Link to ="/" className=" my-40 font-bold flex justify-center text-dark-gray items-center">
Return Home
</Link>
</div>
</div>
</AuthLayout>