proxitok/views/error.latte

23 lines
521 B
Plaintext
Raw Normal View History

<!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-13 15:51:45 +00:00
<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>