mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 15:08:46 +00:00
비밀번호 변경 페이지 구현
This commit is contained in:
@@ -1,3 +1,25 @@
|
||||
<div class="flex h-full items-center justify-center p-4">
|
||||
<p class="text-gray-500">아직 개발 중이에요.</p>
|
||||
<script lang="ts">
|
||||
import { goto } from "$app/navigation";
|
||||
import { EntryButton } from "$lib/components/buttons";
|
||||
|
||||
import IconPassword from "~icons/material-symbols/password";
|
||||
|
||||
let { data } = $props();
|
||||
</script>
|
||||
|
||||
<div class="sticky top-0 bg-white px-6 py-4">
|
||||
<p class="font-semibold">{data.nickname}</p>
|
||||
</div>
|
||||
<div class="space-y-4 px-4 pb-4">
|
||||
<div class="space-y-2">
|
||||
<p class="font-semibold">보안</p>
|
||||
<EntryButton onclick={() => goto("/auth/changePassword")}>
|
||||
<div class="flex items-center gap-x-4">
|
||||
<div class="rounded-lg bg-gray-200 p-1 text-blue-500">
|
||||
<IconPassword />
|
||||
</div>
|
||||
<p class="font-medium">비밀번호 바꾸기</p>
|
||||
</div>
|
||||
</EntryButton>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user