1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>Scholar</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- Google Font: Source Sans Pro -->
- <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
- <link href="{{ asset('/css/app.css') }}" rel="stylesheet">
- <link href="{{ asset('/css/style.css') }}" rel="stylesheet">
- <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
- <link rel="stylesheet" href="{{ asset('/css/toastr.min.css') }}">
- <script src="{{ asset('js/toastr.min.js') }}" type="application/javascript"></script>
- </head>
- <body class="hold-transition login-page bg-light">
- <style>
- .auth-branding {
- background: #444343 !important;
- box-shadow: none !important;
- border-bottom: 1px solid #262626;
- padding: 0.5rem 0;
- margin: 0;
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
- font-size: 1.4rem;
- }
- .auth-branding img {
- line-height: .8;
- margin-left: 0;
- margin-right: .5rem;
- margin-top: -3px;
- max-height: 33px;
- }
- .login-card-body {
- border-bottom-left-radius: 8px;
- border-bottom-right-radius: 8px;
- }
- .login-box {
- width: 400px;
- margin: 100px auto;
- }
- .login-content {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- border-bottom-left-radius: 8px;
- border-bottom-right-radius: 8px;
- overflow: hidden;
- }
- </style>
- <div class="login-box">
- <div class="login-logo auth-branding text-center border-0">
- <span class="brand-text font-weight-light text-white">Scholar</span>
- </div>
- <div class="login-content card border-top-0">
- <div class="card-body border-0 login-card-body p-0">
- @yield('content')
- </div>
- </div>
- </div>
- </body>
- </html>
|