mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 14:27:33 -08:00
Better styling for forgotten password screens
This commit is contained in:
parent
6fe639f490
commit
9e43a44d20
|
@ -10,9 +10,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-4 col-md-offset-4">
|
<div class="col-md-6 col-md-offset-3">
|
||||||
|
|
||||||
<div class="box login-box">
|
<div class="box login-box" style="width: 100%">
|
||||||
<div class="box-header">
|
<div class="box-header">
|
||||||
<h3 class="box-title"> {{ trans('auth/general.send_password_link') }}</h3>
|
<h3 class="box-title"> {{ trans('auth/general.send_password_link') }}</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-4 col-md-offset-4">
|
<div class="col-md-6 col-md-offset-3">
|
||||||
|
|
||||||
<div class="box login-box" style="width: 100%">
|
<div class="box login-box" style="width: 100%">
|
||||||
<div class="box-header">
|
<div class="box-header">
|
||||||
|
|
|
@ -35,10 +35,32 @@
|
||||||
<link rel="stylesheet" href="{{ elixir('assets/css/app.css') }}">
|
<link rel="stylesheet" href="{{ elixir('assets/css/app.css') }}">
|
||||||
|
|
||||||
|
|
||||||
|
@if (\App\Models\Setting::getSettings()->header_color)
|
||||||
|
<style>
|
||||||
|
.main-header .navbar, .main-header .logo {
|
||||||
|
background-color: {{ \App\Models\Setting::getSettings()->header_color }};
|
||||||
|
background: -webkit-linear-gradient(top, {{ \App\Models\Setting::getSettings()->header_color }} 0%,{{ \App\Models\Setting::getSettings()->header_color }} 100%);
|
||||||
|
background: linear-gradient(to bottom, {{ \App\Models\Setting::getSettings()->header_color }} 0%,{{ \App\Models\Setting::getSettings()->header_color }} 100%);
|
||||||
|
border-color: {{ \App\Models\Setting::getSettings()->header_color }};
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-menu > li:hover > a, .skin-blue .sidebar-menu > li.active > a {
|
||||||
|
border-left-color: {{ \App\Models\Setting::getSettings()->header_color }};
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: {{ \App\Models\Setting::getSettings()->header_color }};
|
||||||
|
border-color: {{ \App\Models\Setting::getSettings()->header_color }};
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
@endif
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="hold-transition login-page">
|
<body class="hold-transition login-page">
|
||||||
|
|
||||||
|
|
||||||
|
<center><img class="logo" style="padding-top: 20px; padding-bottom: 20px;" src="{{ config('app.url') }}/uploads/{{ \App\Models\Setting::getSettings()->logo }}"></center>
|
||||||
<!-- Content -->
|
<!-- Content -->
|
||||||
@yield('content')
|
@yield('content')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue