Derick Montague | 126eaab | 2019-12-23 13:33:52 -0600 | [diff] [blame^] | 1 | <template> |
2 | <div> | ||||
3 | <PageTitle :description="description" /> | ||||
4 | </div> | ||||
5 | </template> | ||||
6 | <script> | ||||
7 | import PageTitle from '../../components/Global/PageTitle'; | ||||
8 | export 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> |