Added Document Managment feature #388

Merged
pramod.mahajan merged 124 commits from Document_Manag into main 2025-09-10 14:34:35 +00:00
Showing only changes of commit 86187eaf8a - Show all commits

View File

@ -191,21 +191,25 @@ const LoginPage = () => {
</form> </form>
{/* Footer Text */} {/* Footer Text */}
<p className="text-center mt-3"> {!IsLoginWithOTP ? (
<span>New on our platform? </span> <p className="text-center mt-3">
{IsLoginWithOTP ? ( <span>New on our platform? </span>
<Link to="/auth/reqest/demo" className="btn btn-link p-0">
Request a Demo
</Link>
</p>
) : (
<div className="text-center mt-3">
<button <button
className="btn btn-link p-0" className="btn btn-link p-0"
onClick={() => setLoginWithOtp(false)} onClick={() => setLoginWithOtp(false)}
> >
Login With Password <i className="bx bx-chevron-left scaleX-n1-rtl bx-sm"></i>
Back to login
</button> </button>
) : ( </div>
<Link to="/auth/reqest/demo" className="btn btn-link p-0"> )}
Request a Demo
</Link>
)}
</p>
</div> </div>
</div> </div>
); );