馃 distributed transcription service
thistle.dunkirk.sh
1document.getElementById('start-btn')?.addEventListener('click', async () => {
2 const authComponent = document.querySelector('auth-component') as any;
3 const isLoggedIn = await authComponent.isAuthenticated();
4
5 if (isLoggedIn) {
6 window.location.href = '/classes';
7 } else {
8 authComponent.openAuthModal();
9 }
10});