summaryrefslogtreecommitdiff
path: root/src/views/Unauthorized/Unauthorized.vue
blob: d4203598b3a07f058ebe13a2310a15a9580400fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>