welcome.blade.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!DOCTYPE html>
  2. <html lang="{{ config('app.locale') }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Laravel</title>
  8. <!-- Fonts -->
  9. <link rel="stylesheet" href="{{static_url('yunshop/resources/css/fonts_one.css?family=Raleway:100,600')}}" type="text/css">
  10. {{--<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">--}}
  11. <!-- Styles -->
  12. <style>
  13. html, body {
  14. background-color: #fff;
  15. color: #636b6f;
  16. font-family: 'Raleway', sans-serif;
  17. font-weight: 100;
  18. height: 100vh;
  19. margin: 0;
  20. }
  21. .full-height {
  22. height: 100vh;
  23. }
  24. .flex-center {
  25. align-items: center;
  26. display: flex;
  27. justify-content: center;
  28. }
  29. .position-ref {
  30. position: relative;
  31. }
  32. .top-right {
  33. position: absolute;
  34. right: 10px;
  35. top: 18px;
  36. }
  37. .content {
  38. text-align: center;
  39. }
  40. .title {
  41. font-size: 84px;
  42. }
  43. .links > a {
  44. color: #636b6f;
  45. padding: 0 25px;
  46. font-size: 12px;
  47. font-weight: 600;
  48. letter-spacing: .1rem;
  49. text-decoration: none;
  50. text-transform: uppercase;
  51. }
  52. .m-b-md {
  53. margin-bottom: 30px;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div class="flex-center position-ref full-height">
  59. @if (Route::has('login'))
  60. <div class="top-right links">
  61. @if (Auth::check())
  62. <a href="{{ url('/home') }}">Home</a>
  63. @else
  64. <a href="{{ url('/login') }}">Login</a>
  65. <a href="{{ url('/register') }}">Register</a>
  66. @endif
  67. </div>
  68. @endif
  69. <div class="content">
  70. <div class="title m-b-md">
  71. Laravel
  72. </div>
  73. <div class="links">
  74. <a href="https://laravel.com/docs">Documentation</a>
  75. <a href="https://laracasts.com">Laracasts</a>
  76. <a href="https://laravel-news.com">News</a>
  77. <a href="https://forge.laravel.com">Forge</a>
  78. <a href="https://github.com/laravel/laravel">GitHub</a>
  79. </div>
  80. </div>
  81. </div>
  82. </body>
  83. </html>