phpvms/resources/views/home.blade.php

98 lines
2.3 KiB
PHP
Raw Normal View History

2017-06-10 04:07:29 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2017-06-09 02:28:26 +08:00
<title>phpvms4</title>
2017-06-09 02:28:26 +08:00
2017-06-10 04:07:29 +08:00
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
2017-06-09 02:28:26 +08:00
2017-06-10 04:07:29 +08:00
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: 'Raleway';
font-weight: 100;
height: 100vh;
margin: 0;
background: url(img/bg2.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
2017-06-10 04:07:29 +08:00
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.title {
font-size: 84px;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 12px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
2017-06-19 22:47:26 +08:00
@if(!Auth::user())
<a href="{{ url('/login') }}">Login</a>
<a href="{{ url('/register') }}">Register</a>
@else
@if(Entrust::hasRole('admin'))
<a href="{{ url('/admin') }}">Admin</a>
@endif
2017-06-22 05:06:36 +08:00
<a href="{{ url('/user/dashboard') }}">Dashboard</a>
2017-06-22 05:24:19 +08:00
<a href="{{ url('/logout') }}">Logout</a>
2017-06-19 22:47:26 +08:00
@endif
2017-06-10 04:07:29 +08:00
</div>
@endif
<div class="content">
<div class="title m-b-md">
phpVMS<sup style="">4</sup>
</div>
2017-06-09 02:28:26 +08:00
</div>
</div>
2017-06-10 04:07:29 +08:00
</body>
</html>