16 lines
345 B
Vue
16 lines
345 B
Vue
<template>
|
|
<pn-page-card>
|
|
<template #title>
|
|
<div class="col-grow">
|
|
{{$t('forgot_password__password_recovery')}}
|
|
</div>
|
|
</template>
|
|
<account-helper :type />
|
|
</pn-page-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import accountHelper from 'components/admin/accountHelper.vue'
|
|
const type = 'forgot'
|
|
</script>
|