Files
DiceCloud/app/imports/client/ui/pages/EmailVerificationError.vue
2022-11-19 17:51:50 +02:00

31 lines
472 B
Vue

<template lang="html">
<div>
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Email Verification Error
</h2>
<h3>
{{ error.reason || error.message || error }}
</h3>
</v-layout>
</div>
</template>
<script lang="js">
export default {
props: {
error: {
type: [Object, String],
default: '',
}
}
}
</script>
<style lang="css" scoped>
</style>