blob: d4203598b3a07f058ebe13a2310a15a9580400fa [file] [log] [blame]
<template>
<div>
<page-title :description="description" />
</div>
</template>
<script>
import PageTitle from '../../components/Global/PageTitle';
export default {
name: 'Unauthorized',
components: {
PageTitle
},
data() {
return {
description:
'The attempted action is not accessible from the logged in account. Contact your system administrator to check your privilege role.'
};
}
};
</script>