mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Update login pages to match new styling
This commit is contained in:
parent
1f97ad1a70
commit
c8eace705d
@ -3,7 +3,7 @@
|
|||||||
@section('head')
|
@section('head')
|
||||||
|
|
||||||
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
||||||
<link href="{{ asset('css/style.min.css') }}" rel="stylesheet" type="text/css"/>
|
<link href="{{ asset('css/built.public.min.css') }}" rel="stylesheet" type="text/css"/>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
body {
|
body {
|
||||||
@ -13,6 +13,7 @@
|
|||||||
.modal-header {
|
.modal-header {
|
||||||
border-top-left-radius: 3px;
|
border-top-left-radius: 3px;
|
||||||
border-top-right-radius: 3px;
|
border-top-right-radius: 3px;
|
||||||
|
background-color: #337ab7;
|
||||||
}
|
}
|
||||||
.modal-header h4 {
|
.modal-header h4 {
|
||||||
margin:0;
|
margin:0;
|
||||||
@ -55,6 +56,24 @@
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
padding: 9px 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
color: #000 !important;
|
||||||
|
background: #f9f9f9 !important;
|
||||||
|
background-image: none;
|
||||||
|
border: 1px solid #dfe0e1;
|
||||||
|
border-radius: 2px;
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
||||||
|
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
@ -146,15 +165,7 @@
|
|||||||
} else {
|
} else {
|
||||||
$('#email').focus();
|
$('#email').focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
var authProvider = localStorage.getItem('auth_provider');
|
|
||||||
if (authProvider) {
|
|
||||||
$('#' + authProvider + 'LoginButton').removeClass('btn-primary').addClass('btn-success');
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
@section('head')
|
@section('head')
|
||||||
|
|
||||||
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
||||||
<link href="{{ asset('css/style.min.css') }}" rel="stylesheet" type="text/css"/>
|
<link href="{{ asset('css/built.public.min.css') }}" rel="stylesheet" type="text/css"/>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
body {
|
body {
|
||||||
@ -13,6 +13,8 @@
|
|||||||
.modal-header {
|
.modal-header {
|
||||||
border-top-left-radius: 3px;
|
border-top-left-radius: 3px;
|
||||||
border-top-right-radius: 3px;
|
border-top-right-radius: 3px;
|
||||||
|
background-color: #337ab7;
|
||||||
|
color: #FFf;
|
||||||
}
|
}
|
||||||
.modal-header h4 {
|
.modal-header h4 {
|
||||||
margin:0;
|
margin:0;
|
||||||
@ -46,6 +48,25 @@
|
|||||||
.form-signin .form-control:focus {
|
.form-signin .form-control:focus {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
padding: 9px 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
color: #000 !important;
|
||||||
|
background: #f9f9f9 !important;
|
||||||
|
background-image: none;
|
||||||
|
border: 1px solid #dfe0e1;
|
||||||
|
border-radius: 2px;
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
||||||
|
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
@ -63,7 +84,9 @@
|
|||||||
{!! Former::text('email')->placeholder(trans('texts.email_address'))->raw() !!}
|
{!! Former::text('email')->placeholder(trans('texts.email_address'))->raw() !!}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>{!! Button::success(trans('texts.send_email'))->large()->submit()->block() !!}</p>
|
<p>
|
||||||
|
{!! Button::success(trans('texts.send_email'))->large()->submit()->block() !!}
|
||||||
|
</p>
|
||||||
|
|
||||||
@if (count($errors->all()))
|
@if (count($errors->all()))
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
@section('head')
|
@section('head')
|
||||||
|
|
||||||
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
||||||
<link href="{{ asset('css/style.min.css') }}" rel="stylesheet" type="text/css"/>
|
<link href="{{ asset('css/built.public.min.css') }}" rel="stylesheet" type="text/css"/>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
body {
|
body {
|
||||||
@ -13,6 +13,8 @@
|
|||||||
.modal-header {
|
.modal-header {
|
||||||
border-top-left-radius: 3px;
|
border-top-left-radius: 3px;
|
||||||
border-top-right-radius: 3px;
|
border-top-right-radius: 3px;
|
||||||
|
background-color: #337ab7;
|
||||||
|
color: #FFF;
|
||||||
}
|
}
|
||||||
.modal-header h4 {
|
.modal-header h4 {
|
||||||
margin:0;
|
margin:0;
|
||||||
@ -46,6 +48,25 @@
|
|||||||
.form-signin .form-control:focus {
|
.form-signin .form-control:focus {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
padding: 9px 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
color: #000 !important;
|
||||||
|
background: #f9f9f9 !important;
|
||||||
|
background-image: none;
|
||||||
|
border: 1px solid #dfe0e1;
|
||||||
|
border-radius: 2px;
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
||||||
|
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user