blob: d4203598b3a07f058ebe13a2310a15a9580400fa [file] [log] [blame]
Derick Montague126eaab2019-12-23 13:33:52 -06001<template>
2 <div>
Derick Montague09e45cd2020-01-23 15:45:57 -06003 <page-title :description="description" />
Derick Montague126eaab2019-12-23 13:33:52 -06004 </div>
5</template>
6<script>
7import PageTitle from '../../components/Global/PageTitle';
8export default {
9 name: 'Unauthorized',
10 components: {
11 PageTitle
12 },
13 data() {
14 return {
15 description:
16 'The attempted action is not accessible from the logged in account. Contact your system administrator to check your privilege role.'
17 };
18 }
19};
20</script>