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