Derick Montague | 126eaab | 2019-12-23 13:33:52 -0600 | [diff] [blame] | 1 | <template> |
| 2 | <div> |
Derick Montague | 09e45cd | 2020-01-23 15:45:57 -0600 | [diff] [blame] | 3 | <page-title :description="description" /> |
Derick Montague | 126eaab | 2019-12-23 13:33:52 -0600 | [diff] [blame] | 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> |