login.blade.php 1023 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <title>{{$title}}</title>
  8. <!-- Tell the browser to be responsive to screen width -->
  9. <meta name="_token" content="{{ csrf_token() }}"/>
  10. <!-- Bootstrap 3.3.6 -->
  11. <link rel="stylesheet" href="{{static_url('assets/css/bootstrap.min.css')}}">
  12. <link rel="stylesheet" href="{{static_url('yunshop/libs/font-awesome/4.5.0/css/font-awesome.css')}}">
  13. </head>
  14. <body style="background-color: #e5e5e5">
  15. <div class="container">
  16. <div class="row" style="text-align: center; padding-top: 100px;">
  17. <div><i class="fa fa-exclamation-triangle" style="font-size: 100px;color: #ff3d00"></i></div>
  18. <div class="col-xs-6 col-md-6" style="float: inherit; margin: 20px auto; font-size: 16px;color: rgba(29,28,45,0.4)">{{$content}}</div>
  19. </div>
  20. </div>
  21. </body>
  22. </html>