[READ-ONLY] Mirror of https://github.com/mrgnw/ananas. learn multiple languages at once ananas.xcc.es
0

Configure Feed

Select the types of activity you want to include in your feed.

WIP

+3 -3
+1 -1
src/routes/auth/login/+page.svelte
··· 38 38 <div class="auth-card"> 39 39 <h1>Login</h1> 40 40 41 - <form on:submit={handleLogin} class="auth-form"> 41 + <form onsubmit={handleLogin} class="auth-form"> 42 42 {#if errorMessage} 43 43 <div class="error-message">{errorMessage}</div> 44 44 {/if}
+1 -1
src/routes/auth/signup/+page.svelte
··· 61 61 <div class="auth-card"> 62 62 <h1>Create Account</h1> 63 63 64 - <form on:submit={handleSignup} class="auth-form"> 64 + <form onsubmit={handleSignup} class="auth-form"> 65 65 {#if errorMessage} 66 66 <div class="error-message">{errorMessage}</div> 67 67 {/if}
+1 -1
src/routes/user/+page.svelte
··· 38 38 <h3>{user.auth.username || 'User'}</h3> 39 39 <p class="email">{user.auth.email}</p> 40 40 </div> 41 - <button class="logout-button" on:click={handleLogout} disabled={isLoggingOut}> 41 + <button class="logout-button" onclick={handleLogout} disabled={isLoggingOut}> 42 42 <LogOut size={18} /> 43 43 <span>{isLoggingOut ? 'Logging out...' : 'Logout'}</span> 44 44 </button>