2015-06-20 15:13:40 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
2015-06-21 11:09:29 +00:00
|
|
|
<meta name="csrf-token" class="token" content="{{ csrf_token() }}">
|
2015-06-20 15:13:40 +00:00
|
|
|
<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>
|
2015-06-21 14:34:27 +00:00
|
|
|
<body class="{{ $section }}">
|
2015-06-20 15:13:40 +00:00
|
|
|
|
2015-06-21 14:34:27 +00:00
|
|
|
@yield('content')
|
2015-06-20 15:13:40 +00:00
|
|
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
|
2015-06-21 11:09:29 +00:00
|
|
|
<script src="{{ url('assets/js/bundle.js') }}"></script>
|
2015-06-20 15:13:40 +00:00
|
|
|
|
2015-06-21 14:34:27 +00:00
|
|
|
<script>
|
|
|
|
// todo: extract to vue
|
|
|
|
setTimeout(function() {
|
|
|
|
$('.container-form-landing').addClass('active')
|
|
|
|
}, 400);
|
|
|
|
|
|
|
|
// 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>
|
|
|
|
|
2015-06-20 15:13:40 +00:00
|
|
|
</body>
|
|
|
|
</html>
|