proxitok/views/error.latte
2022-01-13 16:51:45 +01:00

23 lines
521 B
Plaintext

<!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">
<p class="title">API errror code {$error->tiktok_code}</p>
<p class="subtitle">{$error->tiktok_msg}</p>
</div>
</div>
<div class="hero-foot is-danger">
{include 'components/footer.latte'}
</div>
</section>
</body>
</html>