Skip to content

Commit

Permalink
feat: implement SignupAfterMailView
Browse files Browse the repository at this point in the history
  • Loading branch information
Eraxyso authored Dec 12, 2024
1 parent 60252d0 commit 729fde1
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions src/views/SignupAfterMailView.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,34 @@
<script setup lang="ts"></script>
<script setup lang="ts">
import BorderedButton from '@/components/Controls/BorderedButton.vue'
import PrimaryButton from '@/components/Controls/PrimaryButton.vue'
function onClose() {
// TODO: Implement closing the dialog
}
function onResendEmail() {
// TODO: Implenent resending the email
}
</script>

<template>
<div>
<h1>Signup After Mail</h1>
<div
class="flex items-center justify-center bg-background-tertiary px-8 py-6"
style="height: calc(100vh - 56px)"
>
<div class="max-w-xl space-y-5 rounded-2xl bg-white px-14 py-10">
<div class="fontstyle-ui-title text-left">確認メールを送信しました</div>
<div class="fontstyle-ui-body text-left text-text-secondary">
60分以内に、メールに記載されたリンクから登録フォームにアクセスしてください。
</div>
<div class="flex gap-3">
<div class="flex-1">
<PrimaryButton text="この画面を閉じる" class="w-full" @click="onClose" />
</div>
<div class="flex-1">
<BorderedButton text="メールを再送信する" class="w-full" @click="onResendEmail" />
</div>
</div>
</div>
</div>
</template>

Expand Down

0 comments on commit 729fde1

Please sign in to comment.