Initial Release

This commit is contained in:
2026-05-24 21:58:23 -07:00
commit 0a782e0096
209 changed files with 11657 additions and 0 deletions
@@ -0,0 +1,10 @@
(() => {
const href = document.location.href
const token = new URLSearchParams(href.slice(href.indexOf('?') + 1)).get('token')
if (token) CallAPI('POST', '/v1/auth/verify-email/' + token, 'public')
CreateMessage(
'Email Verified',
'Thank you for verifying your email! Redirecting you to your profile...',
'Done', () => window.location.assign('/profile')
)
})()