From 989820e41bb129ef5feddc4ecc6b28db761b9f2e Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 1 Dec 2024 15:33:24 +0000 Subject: [PATCH] Add copyright notice --- app/api/authentication.tsx | 2 ++ app/ui/components/login-form.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/api/authentication.tsx b/app/api/authentication.tsx index 4393b98..e6637af 100644 --- a/app/api/authentication.tsx +++ b/app/api/authentication.tsx @@ -1,3 +1,5 @@ +/* Copyright (C) 2024 Manuel Bustillo*/ + import { getCsrfToken } from '@/app/lib/utils'; export function login({ email, password, onLogin }: { email: string, password: string, onLogin: () => void }) { diff --git a/app/ui/components/login-form.tsx b/app/ui/components/login-form.tsx index 4ae32da..492d1d2 100644 --- a/app/ui/components/login-form.tsx +++ b/app/ui/components/login-form.tsx @@ -1,3 +1,5 @@ +/* Copyright (C) 2024 Manuel Bustillo*/ + 'use client'; import { FloatLabel } from 'primereact/floatlabel';