creating login popup security check

Perform security checks on the login popup to minimize bugs in unexpected situations.
This commit is contained in:
2025-08-17 22:50:24 +07:00
parent b12a3211b6
commit a848d4dcb5
9 changed files with 112 additions and 5 deletions

View File

@ -0,0 +1,5 @@
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Login | Nounoz TV",
};

11
app/(auth)/login/page.tsx Normal file
View File

@ -0,0 +1,11 @@
import LoginPage from "@/features/auth/pages/LoginPage";
import { metadata } from "./metadata";
export { metadata };
import React from "react";
const page = () => {
return <LoginPage />;
};
export default page;