-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed580e5
commit 4b09fb5
Showing
4 changed files
with
79 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
import React from 'react'; | ||
import Image from 'next/image'; | ||
import React from "react"; | ||
import Image from "next/image"; | ||
|
||
const DeletePopup = () => { | ||
return ( | ||
<div className='rectangle-box flex-col'> | ||
<div className="rectangle-box flex-col"> | ||
<div className="heading"> | ||
<h2>Delete</h2> | ||
</div> | ||
<div className="deleteimage"> | ||
<Image src="/Delete.png"width={100} height={100} alt="Delete" /> | ||
<p className='text'>Are you sure you want to delete ? you cannot undo this action.</p> | ||
<div className="delete-image"> | ||
<Image src="/Delete.png" width={100} height={100} alt="Delete" /> | ||
<p className="text"> | ||
Are you sure you want to delete ? you cannot undo this action. | ||
</p> | ||
</div> | ||
<div className=' flex w-full justify-between'> | ||
<button className="cancel-button">Cancel</button> | ||
<button className="cancel-button">Continue</button> | ||
<div className=" flex w-full justify-between"> | ||
<button className="cancel-button">Cancel</button> | ||
|
||
<button className="cancel-button">Continue</button> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default DeletePopup | ||
); | ||
}; | ||
|
||
export default DeletePopup; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
import React from 'react' | ||
import Image from 'next/image' | ||
import React from "react"; | ||
import Image from "next/image"; | ||
|
||
const LogoutPopup = () => { | ||
return ( | ||
<div className='Logout-box'> | ||
<div className='title'> | ||
<div className="logout-box"> | ||
<div className="title"> | ||
<h2>Logout</h2> | ||
</div> | ||
<div className='Logoutimage'> | ||
<Image src="/Logout.png" width={100} height={100} alt="Logout" /> | ||
|
||
<p className='Logout-text' >Are you sure you want to Logout.</p> | ||
</div> | ||
<div className='flex w-full justify-betwen gap-10' > | ||
<button className='cancel1-button'>Cancel</button> | ||
<button className='Logout-button'>Logout</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="logout-image"> | ||
<Image src="/Logout.png" width={100} height={100} alt="Logout" /> | ||
|
||
|
||
) | ||
} | ||
<p className="logout-text">Are you sure you want to Logout.</p> | ||
</div> | ||
<div className="flex w-full justify-betwen gap-10"> | ||
<button className="cancel-button">Cancel</button> | ||
<button className="logout-button">Logout</button> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LogoutPopup | ||
export default LogoutPopup; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters