file rename

This commit is contained in:
wallace
2025-11-25 10:30:17 +09:00
parent e74061057d
commit 71feecb8d1
2 changed files with 35 additions and 36 deletions

View File

@@ -26,7 +26,7 @@ export default function LoginOption({
className={`fixed bottom-2 right-2 bg-red-400 cursor-pointer rounded-full w-[40px] h-[40px] shadow-xl z-100`} className={`fixed bottom-2 right-2 bg-red-400 cursor-pointer rounded-full w-[40px] h-[40px] shadow-xl z-100`}
> >
</button> </button>
{ isOpen && ( {isOpen && (
<div className="fixed inset-0 flex items-center justify-center z-50"> <div className="fixed inset-0 flex items-center justify-center z-50">
<div className="w-[500px] h-[600px] flex bg-white/80 p-10 border rounded-lg relative"> <div className="w-[500px] h-[600px] flex bg-white/80 p-10 border rounded-lg relative">
<button <button

View File

@@ -31,7 +31,7 @@ export default function LoginPage() {
try { try {
const response = await fetch("https://hrdi.coconutmeet.net/auth/login", { const response = await fetch("https://hrdi.coconutmeet.net/auth/login", {
method: "POST", method: "POST",
headers: {"Content-Type": "application/json",}, headers: { "Content-Type": "application/json", },
body: JSON.stringify({ body: JSON.stringify({
email: userId, email: userId,
password: password password: password
@@ -104,7 +104,7 @@ export default function LoginPage() {
{/* 로고 영역 */} {/* 로고 영역 */}
<div className="my-15 flex flex-col items-center"> <div className="my-15 flex flex-col items-center">
<div className="mb-[7px]"> <div className="mb-[7px]">
<MainLogo/> <MainLogo />
</div> </div>
<div className="text-[28.8px] font-extrabold leading-[145%] text-neutral-700" > <div className="text-[28.8px] font-extrabold leading-[145%] text-neutral-700" >
XR LMS XR LMS
@@ -256,4 +256,3 @@ export default function LoginPage() {
</div> </div>
); );
} }