2022-01-11 13:25:30 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
{include 'components/head.latte', title: 'ERROR'}
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<section class="hero is-danger is-fullheight">
|
|
|
|
<div class="hero-head">
|
|
|
|
{include 'components/navbar.latte'}
|
|
|
|
</div>
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
2022-01-14 12:00:23 -05:00
|
|
|
<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}
|
2022-01-11 13:25:30 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="hero-foot is-danger">
|
|
|
|
{include 'components/footer.latte'}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|