PteroTheme/resources/themes/pterodactyl/templates/auth/core.blade.php

16 lines
497 B
PHP
Raw Normal View History

@extends('templates/wrapper', [
'css' => ['body' => 'bg-neutral-900']
])
@section('container')
<div class="w-full max-w-xs sm:max-w-sm m-auto mt-8">
<div class="text-center hidden sm:block">
<img src="/assets/img/pterodactyl-flat.svg" class="max-w-xxs">
</div>
<router-view></router-view>
2019-02-09 22:48:47 +00:00
<p class="text-center text-neutral-500 text-xs">
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
</p>
</div>
@endsection