Add a way to login to your account on the website

This commit is contained in:
2026-01-30 18:46:54 -07:00
parent a0e64af3ce
commit ae63c449fa
6 changed files with 130 additions and 6 deletions

18
src/app/account/page.tsx Normal file
View File

@@ -0,0 +1,18 @@
'use client'
import { HomeButton } from '@/app/components/HomeButton'
import { DiscordButton } from '@/app/components/DiscordButton'
import { getCookie } from '@/util/cookie'
export default function AccountLoginPage () {
return (
<div className='box'>
<HomeButton />
<DiscordButton />
<p className={`px-8 -my-2 text-center`}>
Nothing on this page yet! You are logged in as{' '}
{getCookie('accountUsername', 'N/A')}.
</p>
</div>
)
}