2020-05-08 05:06:24 +00:00
|
|
|
<!doctype HTML>
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="description" content="The Minecraft Staff Member Management Tool">
|
|
|
|
<meta name="author" content="Miguel Nogueira">
|
|
|
|
<meta name="tags" content="minecraft, minecraft server staff, minecraft staff, minecraft servers">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
2020-08-31 23:29:58 +00:00
|
|
|
<title>{{config('app.name')}} | {{__('messages.home')}}</title>
|
2020-05-08 05:06:24 +00:00
|
|
|
<!-- Font Awesome -->
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
|
|
|
|
<!-- Google Fonts -->
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Material Design Bootstrap -->
|
|
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.16.0/css/mdb.min.css" rel="stylesheet">
|
|
|
|
|
|
|
|
<link href="https:////cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet">
|
|
|
|
|
|
|
|
<link href="/app.css" rel="stylesheet">
|
|
|
|
|
|
|
|
<!-- JQuery -->
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
|
|
|
<!-- Bootstrap tooltips -->
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script>
|
|
|
|
<!-- MDB core JavaScript -->
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.16.0/js/mdb.min.js"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
|
|
|
|
|
|
|
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<!--Main Navigation-->
|
|
|
|
<header>
|
|
|
|
|
|
|
|
<nav class="navbar fixed-top navbar-expand-lg navbar-dark">
|
2020-08-31 22:20:53 +00:00
|
|
|
<a class="navbar-brand" href="#"><strong>{{config('app.name')}}</strong></a>
|
2020-05-08 05:06:24 +00:00
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
|
|
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
|
|
|
<li class="nav-item">
|
2020-08-31 23:29:58 +00:00
|
|
|
<a class="nav-link " href="{{config('app.sitehomepage')}}">{{__('messages.homepagetxt')}}</a>
|
2020-05-08 05:06:24 +00:00
|
|
|
</li>
|
2020-09-02 18:15:01 +00:00
|
|
|
<li class="nav-item dropdown">
|
2020-09-02 18:20:06 +00:00
|
|
|
<a href="#" class="nav-link dropdown-toggle">Language selection</a>
|
2020-09-02 18:15:01 +00:00
|
|
|
<ul class="dropdown-menu">
|
|
|
|
@foreach(Mcamara\LaravelLocalization\Facades\LaravelLocalization::getSupportedLocales() as $localeCode => $properties)
|
|
|
|
<li class="dropdown-item">
|
|
|
|
<a rel="alternate" hreflang="{{ $localeCode }}" href="{{ Mcamara\LaravelLocalization\Facades\LaravelLocalization::getLocalizedURL($localeCode, null, [], true) }}">
|
2020-09-02 18:29:37 +00:00
|
|
|
<img src="https://www.countryflags.io/{{$localeCode}}/flat/64.png"> {{ $properties['native'] }}
|
2020-09-02 18:15:01 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
2020-09-02 18:04:25 +00:00
|
|
|
</li>
|
2020-05-08 05:06:24 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
|
<ul class="navbar-nav ml-auto float-right">
|
|
|
|
@guest
|
|
|
|
<li class="nav-item">
|
2020-08-31 23:29:58 +00:00
|
|
|
<button class="btn btn-info" type="button" onclick="window.location.href='{{route('login')}}'"><i class="fas fa-sign-in-alt"></i> {{__('messages.login')}}</button>
|
2020-05-08 05:06:24 +00:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="nav-item">
|
2020-08-31 23:29:58 +00:00
|
|
|
<button class="btn btn-info" type="button" onclick="window.location.href='{{route('register')}}'"><i class="fas fa-plus"></i> {{__('messages.register')}}</button>
|
2020-05-08 05:06:24 +00:00
|
|
|
</li>
|
|
|
|
@endguest
|
|
|
|
|
|
|
|
@auth
|
|
|
|
<li class="nav-item">
|
2020-08-31 23:29:58 +00:00
|
|
|
<button type="button" class="btn btn-info" onclick="window.location.href='{{route('dashboard')}}'">{{__('messages.dashboard')}}</button>
|
2020-05-08 05:06:24 +00:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="nav-item">
|
2020-05-22 02:49:16 +00:00
|
|
|
<form method="POST" action="{{route('logout')}}">
|
2020-05-08 05:06:24 +00:00
|
|
|
@csrf
|
2020-08-31 23:29:58 +00:00
|
|
|
<button type="submit" class="btn btn-danger"><i class="fa fa-power-off"></i>{{__('messages.logout')}}</button>
|
2020-05-08 05:06:24 +00:00
|
|
|
</form>
|
|
|
|
</li>
|
|
|
|
@endauth
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="view intro-2">
|
|
|
|
<div class="full-bg-img">
|
|
|
|
<div class="mask rgba-black-light flex-center">
|
|
|
|
<div class="container text-center white-text">
|
|
|
|
<div class="white-text text-center wow fadeInUp">
|
2020-08-31 22:20:53 +00:00
|
|
|
<h2>{{config('app.name')}}</h2>
|
2020-08-31 23:29:58 +00:00
|
|
|
<h5> {{__('messages.homepage_welcome')}}</h5>
|
2020-05-08 05:06:24 +00:00
|
|
|
<br>
|
2020-08-31 23:29:58 +00:00
|
|
|
<p>{{__('messages.homepage_explainer_line1')}}</p>
|
|
|
|
<p>{{__('messages.homepage_explainer_line2')}}</p>
|
2020-05-08 05:06:24 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</header>
|