Compare commits

..

No commits in common. "0d2d5c7c0c34c63221594496b26ce2e4f4cf2e78" and "af13ad4a0827f0b2d5e3aa772ecc2b195743ac01" have entirely different histories.

3 changed files with 0 additions and 49 deletions

View File

@ -7,7 +7,6 @@
import {loginStore, profileStore, type LoginStore, type ProfileData} from "./stores/login";
loginStore.subscribe((value: LoginStore) => {
console.error("Change login", value);
getMe();
});

View File

@ -17,53 +17,6 @@
<div class="settings-content">
{#if $profileStore}
<h1>Settings</h1>
<form>
<h2>Email</h2>
<div>
<span>{$profileStore.email}</span>
{#if $profileStore.email_verified}
<span> - Verified</span>
{:else}
<span> - Unverified</span>
{/if}
</div>
<section>
<input id="email" name="email" placeholder=" " autocomplete="email" required bind:value={inputEmail} />
</section>
<button type="submit">Change email</button>
</form>
<form>
<h2>Password</h2>
<section>
<label for="password">Password:</label>
<input id="password" name="password" placeholder=" " autocomplete="password" required bind:value={inputPassword} />
<label for="new-password">New Password:</label>
<input
id="new-password"
name="new-password"
placeholder=" "
autocomplete="new-password"
aria-describedby="password-constraints"
required
bind:value={inputNewPassword}
/>
<label for="repeat-password">Repeat Password:</label>
<input
id="repeat-password"
name="repeat-password"
placeholder=" "
autocomplete="repeat-password"
aria-describedby="password-constraints"
required
bind:value={inputRepeatPassword}
/>
</section>
<section>
<PasswordConstraints password={inputNewPassword} />
</section>
<button type="submit">Change password</button>
</form>
<section />
<section>Honestly I'm just too lazy to make this yet</section>
{:else}
<LazyDelay delayMs={500}>Loading...</LazyDelay>

View File

@ -18,7 +18,6 @@ export const loginStore = writable<LoginStore>(
loginStore.subscribe(value => localStorage.setItem("login-session", JSON.stringify(value)));
export interface ProfileData {
email_verified: boolean;
icon: string;
display_name: string;
username: string;