1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/site/client/views/app.blade.php
2015-06-21 20:29:07 +02:00

40 lines
1.0 KiB
PHP

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="csrf-token" class="token" content="{{ csrf_token() }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gwent Online</title>
<link href="{{ url('favicon.ico') }}" rel="icon" type="image/x-icon">
<link href="{{ url('assets/css/app.css') }}" rel="stylesheet">
</head>
<body class="{{ $section }}">
@yield('content')
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="{{ url('assets/js/bundle.js') }}"></script>
<script>
// todo: extract to vue
setTimeout(function() {
$('.container-form-landing').addClass('active')
}, 300);
// todo: extract to vue
$('.btn-guest').on('click', function() {
// set localstorage for guest
$('.icon-guest-load').show();
setTimeout(function() {
window.location.href = './lobby';
}, 500);
});
</script>
</body>
</html>