feat: 注册页面和管理员登录时新用户审核提醒

This commit is contained in:
2025-02-20 19:29:29 +08:00
parent 859aba64a8
commit 6586872327
5 changed files with 262 additions and 7 deletions

View File

@@ -6,6 +6,10 @@ definePageMeta({
layout: 'authenticate',
})
useSeoMeta({
title: '登录',
})
const router = useRouter()
const toast = useToast()
const loginState = useLoginState()
@@ -565,6 +569,18 @@ const onForgetPasswordSubmit = (
</template>
</UTabs>
</div>
<div class="pt-4">
<UButton
color="gray"
variant="ghost"
class="!text-gray-500"
@click="() => {
router.push('/user/register')
}"
>
注册新账号
</UButton>
</div>
</div>
</template>