proxitok/views/error.latte
2022-03-11 22:46:12 +01:00

13 lines
401 B
Plaintext

{layout '../layouts/hero.latte'}
{block content}
<p class="title">There was an error processing your request!</p>
<p class="subtitle">HTTP Code: {$error->http_code}</p>
{if $error->tiktok_code}
<p class="subtitle">API error code {$error->tiktok_code} ({$error->tiktok_msg})</p>
{if $error->tiktok_code === 10000}
<a href="{path('/verify')}">What does this mean?</a>
{/if}
{/if}
{/block}