20 lines
733 B
Handlebars
20 lines
733 B
Handlebars
<AppView @class="error show">
|
|
<BlockSlot @name="header">
|
|
<h1 data-test-error>
|
|
{{#if error.status }}
|
|
{{error.status}} ({{error.message}})
|
|
{{else}}
|
|
{{error.message}}
|
|
{{/if}}
|
|
</h1>
|
|
</BlockSlot>
|
|
<BlockSlot @name="content">
|
|
<p>
|
|
Consul returned an error.
|
|
You may have visited a URL that is loading an unknown resource, so you can try going back to the root or try re-submitting your ACL Token/SecretID by going back to ACLs.<br />
|
|
Try looking in our <a href="{{env 'CONSUL_DOCS_URL'}}" target="_blank">documentation</a>
|
|
</p>
|
|
<a data-test-home rel="home" href={{href-to 'index'}}>Go back to root</a>
|
|
</BlockSlot>
|
|
</AppView>
|