20 lines
913 B
JavaScript
20 lines
913 B
JavaScript
import React from "react"
|
|
// import LoginPage from "./LoginPage";
|
|
import ForgotPasswordPage from "./ForgotPasswordPage";
|
|
|
|
const MainForgetPage = () => {
|
|
return (
|
|
<>
|
|
|
|
<div class="authentication-inner row m-0">
|
|
<div class="d-none d-lg-flex col-lg-7 col-xl-8 h-100 align-items-center p-3">
|
|
<div class="w-75 h-75 d-flex justify-content-center">
|
|
<img src="https://demos.themeselection.com/sneat-bootstrap-html-admin-template/assets/img/illustrations/girl-unlock-password-light.png" class="object-fit-sm-contain " alt="Login image" width="700" data-app-dark-img="illustrations/girl-unlock-password-dark.png" data-app-light-img="illustrations/girl-unlock-password-light.png" />
|
|
</div>
|
|
</div>
|
|
<ForgotPasswordPage />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
export default MainForgetPage; |