Skip to content

Commit

Permalink
Merge pull request #110 from shuvadeepmondal/shuvadeep
Browse files Browse the repository at this point in the history
Closes #109
  • Loading branch information
Puskar-Roy authored Aug 10, 2024
2 parents 5a8b8cb + 5ba875b commit 6cba8db
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "OTP" ALTER COLUMN "expiresAt" SET DEFAULT CURRENT_TIMESTAMP + interval '10 minutes';
2 changes: 1 addition & 1 deletion apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^7.2.0",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.9.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/src/components/auth/Forgot-Password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default function ForgotPassword(): JSX.Element {
};

return (
<main className="w-full min-h-[120vh] flex dark:bg-slate-800">
<div className="grid grid-cols-1 md:grid-cols-2 m-auto px-6 py-5 h-[400px] sm:max-w-[850px] rounded-2xl dark:bg-slate-700 bg-white">
<main className="w-full min-h-[100vh] flex bg-[url('https://pagedone.io/asset/uploads/1691055810.png')] dark:bg-slate-900 bg-cover">
<div className="grid grid-cols-1 md:grid-cols-2 m-auto px-2 py-2 h-[400px] sm:max-w-[850px] rounded-2xl dark:bg-slate-700 ">
<div className="w-full h-[450px] hidden md:block">
<img className="w-full mt-4 ml-2 h-[380px]" src={log_img} alt="Forgot Password" />
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/src/components/auth/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export default function Login(): JSX.Element {
};

return (
<main className="w-full min-h-[110vh] flex dark:bg-slate-800">
<div className="grid grid-cols-1 md:grid-cols-2 m-auto h-[450px] sm:max-w-[800px] rounded-2xl dark:bg-slate-700 bg-white">
<main className="w-full min-h-[110vh] flex bg-[url('https://pagedone.io/asset/uploads/1691055810.png')] dark:bg-slate-900 bg-cover">
<div className="grid grid-cols-1 md:grid-cols-2 m-auto h-[450px] sm:max-w-[800px] rounded-2xl dark:bg-slate-700">
<div className="w-full h-[300px] hidden md:block">
<img className="mt-12" src={log_img} alt="Login illustration" />
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/src/components/auth/Register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export default function Register(): JSX.Element {
};

return (
<main className="w-full min-h-[110vh] flex dark:bg-slate-800">
<div className="grid grid-cols-1 md:grid-cols-2 m-auto h-[620px] sm:max-w-[900px] rounded-2xl dark:bg-slate-700 bg-white">
<main className="w-full min-h-[110vh] flex bg-[url('https://pagedone.io/asset/uploads/1691055810.png')] dark:bg-slate-900 bg-cover">
<div className="grid grid-cols-1 md:grid-cols-2 m-auto h-[620px] sm:max-w-[900px] rounded-2xl dark:bg-slate-700 ">
<div className="w-full h-[450px] hidden md:block">
<img
className="w-full mt-[130px] ml-2 h-[380px]"
Expand Down

0 comments on commit 6cba8db

Please sign in to comment.