proxitok/views/error.latte

11 lines
394 B
Plaintext
Raw Normal View History

2022-01-25 13:08:31 +00:00
{layout '../layouts/hero.latte'}
2022-01-25 13:08:31 +00:00
{block content}
<p class="title">There was an error processing your request!</p>
<p class="subtitle">HTTP Code: {$error->http_code}</p>
2022-07-03 16:35:30 +00:00
<p class="subtitle">API error code {$error->tiktok_code} ({$error->tiktok_msg})</p>
{if $error->tiktok_code === 10000 || $error->tiktok_code === -1}
<a href="{path('/verify')}">What does this mean?</a>
{/if}
2022-01-25 13:08:31 +00:00
{/block}