diff --git a/src/app/actions/auth.ts b/src/app/actions/auth.ts index 7aeb79d..f9a3240 100644 --- a/src/app/actions/auth.ts +++ b/src/app/actions/auth.ts @@ -12,7 +12,7 @@ export async function logout() { const token = await getSessionData('token'); try { - await fetch(`${API_BASE_URL}v1/api/auth/logout`, { + await fetch(`${API_BASE_URL}/v1/api/auth/logout`, { method: 'POST', headers: { "Content-Type": "application/json", @@ -43,7 +43,7 @@ export async function authorization( try { const { email, password } = validatedFields.data; - const response = await fetch(`${API_BASE_URL}v1/api/auth/login`, { + const response = await fetch(`${API_BASE_URL}/v1/api/auth/login`, { method: 'POST', body: JSON.stringify({ email: email, @@ -100,7 +100,7 @@ export async function registration( try { const { full_name, email, password } = validatedFields.data; - const response = await fetch(`${API_BASE_URL}v1/api/auth/register`, { + const response = await fetch(`${API_BASE_URL}/v1/api/auth/register`, { method: 'POST', body: JSON.stringify({ fullName: full_name, email, password }), headers: { diff --git a/src/app/styles/marking-pages.scss b/src/app/styles/marking-pages.scss index e5859e2..ae2fe4b 100644 --- a/src/app/styles/marking-pages.scss +++ b/src/app/styles/marking-pages.scss @@ -126,4 +126,38 @@ color: #111827; font-size: 18px; } + + th { + background: linear-gradient(135deg, #6366f1, #8b5cf6); + color: white; + padding: 15px; + text-align: left; + font-weight: 600; + font-size: 14px; + } + + td { + padding: 15px; + border-bottom: 1px solid #f3f4f6; + vertical-align: middle; + } + + .files-table { + &-file { + display: flex; + align-items: center; + } + + &-icon { + width: 40px; + height: 40px; + background: #f0f9ff; + border-radius: 8px; + display: flex; + align-items: center; + justify-content: center; + margin-right: 12px; + border: 2px solid #6366f1; + } + } } \ No newline at end of file diff --git a/src/app/ui/marking-page/protected-files-table.tsx b/src/app/ui/marking-page/protected-files-table.tsx index 6aadd2c..d4c446f 100644 --- a/src/app/ui/marking-page/protected-files-table.tsx +++ b/src/app/ui/marking-page/protected-files-table.tsx @@ -19,8 +19,8 @@ export default function ProtectedFilesTable() {