2022-01-25 08:08:31 -05:00
|
|
|
{layout '../layouts/hero.latte'}
|
2022-01-11 13:25:30 -05:00
|
|
|
|
2022-01-25 08:08:31 -05:00
|
|
|
{block content}
|
2022-01-25 11:20:11 -05:00
|
|
|
<p class="title">There was an error processing your request!</p>
|
2022-09-03 08:01:03 -04:00
|
|
|
<div class="content">
|
|
|
|
<p>HTTP Code: {$http_code}</p>
|
|
|
|
{if isset($tiktok_code)}
|
|
|
|
<p>
|
|
|
|
<span>API error code {$tiktok_code} ({$msg})</span>
|
|
|
|
{if $tiktok_code === 10000 || $tiktok_code === -1}
|
|
|
|
<a href="{path('/verify')}">What does this mean?</a>
|
|
|
|
{/if}
|
|
|
|
</p>
|
|
|
|
{else}
|
|
|
|
<p>{$msg}</p>
|
|
|
|
{/if}
|
|
|
|
</div>
|
2022-01-25 08:08:31 -05:00
|
|
|
{/block}
|