Skip to content

Commit

Permalink
reset pass changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdelmouzahir committed Jun 29, 2024
1 parent 47946cf commit 4c48f64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion app/auth/ResetPassword/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,13 @@ const ResetPassword = () => {
);

return (
<div className="min-h-screen py-40" style={{ backgroundImage: 'linear-gradient(115deg, #dfc42f, #faf7df)' }}>
<div className="min-h-screen py-40"
style={{
backgroundImage: "url(/assets/images/salade.jpg)",
backgroundSize: "cover", // Adjusts the size of the background image
backgroundPosition: "center", // Centers the background image
backgroundRepeat: "no-repeat", // Prevents the background image from repeating
}}>
<div className="container mx-auto">
<div className="flex flex-col lg:flex-row w-10/12 lg:w-8/12 bg-white rounded-xl mx-auto shadow-xl overflow-hidden">
<div
Expand Down
2 changes: 1 addition & 1 deletion app/auth/loginRestaurant/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { auth } from "@/app/firebase/config";
import { useRouter } from "next/navigation";
import Link from "next/link";
import { sendPasswordResetEmail } from "firebase/auth";
import Modal from "@/Components/Modal";
import Modal from "@/components/Modal";
import { BiSolidCommentError } from "react-icons/bi";
import { getRestaurantInformationByUser } from "@/services/GetRequest/getRequest";

Expand Down

0 comments on commit 4c48f64

Please sign in to comment.