2015-03-16 22:45:25 +01:00
|
|
|
@extends('master')
|
|
|
|
|
2016-08-22 15:45:34 +02:00
|
|
|
@section('head')
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-08-22 15:45:34 +02:00
|
|
|
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
2016-10-06 16:26:02 +02:00
|
|
|
<link href="{{ asset('css/built.public.min.css') }}" rel="stylesheet" type="text/css"/>
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
padding-top: 40px;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
2016-10-06 16:26:02 +02:00
|
|
|
background-color: #337ab7;
|
|
|
|
color: #FFf;
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
.modal-header h4 {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
.modal-header img {
|
2016-08-22 15:45:34 +02:00
|
|
|
float: left;
|
2015-03-16 22:45:25 +01:00
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
.form-signin {
|
|
|
|
max-width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
p.link a {
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
.form-signin .inner {
|
|
|
|
padding: 20px;
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
border-left: 1px solid #ddd;
|
|
|
|
border-right: 1px solid #ddd;
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
.form-signin .checkbox {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.form-signin .form-control {
|
|
|
|
margin-bottom: 17px !important;
|
|
|
|
}
|
|
|
|
.form-signin .form-control:focus {
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2016-10-06 16:26:02 +02:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
</style>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
<div class="container">
|
|
|
|
|
2016-04-15 12:25:58 +02:00
|
|
|
{!! Former::open('recover_password')->rules(['email' => 'required|email'])->addClass('form-signin') !!}
|
2015-03-16 22:45:25 +01:00
|
|
|
<div class="modal-header">
|
2016-10-30 17:09:22 +01:00
|
|
|
@if (Utils::isWhiteLabel())
|
|
|
|
<h4>{{ trans('texts.password_recovery') }}</h4>
|
|
|
|
@else
|
|
|
|
<a href="{{ NINJA_WEB_URL }}" target="_blank">
|
|
|
|
<img src="{{ asset('images/icon-login.png') }}" />
|
|
|
|
</a>
|
|
|
|
<h4>Invoice Ninja | {{ trans('texts.password_recovery') }}</h4>
|
|
|
|
@endif
|
|
|
|
</div>
|
2015-03-16 22:45:25 +01:00
|
|
|
<div class="inner">
|
|
|
|
|
|
|
|
<p>
|
2015-03-24 08:37:02 +01:00
|
|
|
{!! Former::text('email')->placeholder(trans('texts.email_address'))->raw() !!}
|
2015-03-16 22:45:25 +01:00
|
|
|
</p>
|
|
|
|
|
2016-10-06 16:26:02 +02:00
|
|
|
<p>
|
|
|
|
{!! Button::success(trans('texts.send_email'))->large()->submit()->block() !!}
|
|
|
|
</p>
|
2015-03-30 17:20:53 +02:00
|
|
|
|
|
|
|
@if (count($errors->all()))
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (session('status'))
|
|
|
|
<div class="alert alert-info">
|
|
|
|
{{ session('status') }}
|
|
|
|
</div>
|
|
|
|
@endif
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
<!-- if there are login errors, show them here -->
|
|
|
|
@if (Session::has('warning'))
|
|
|
|
<div class="alert alert-warning">{{ Session::get('warning') }}</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (Session::has('message'))
|
|
|
|
<div class="alert alert-info">{{ Session::get('message') }}</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (Session::has('error'))
|
|
|
|
<div class="alert alert-danger">{{ Session::get('error') }}</div>
|
|
|
|
@endif
|
|
|
|
|
2015-03-24 08:37:02 +01:00
|
|
|
{!! Former::close() !!}
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-05-09 20:25:16 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2016-08-22 15:45:34 +02:00
|
|
|
$('#email').focus();
|
2015-05-09 20:25:16 +02:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2016-08-22 15:45:34 +02:00
|
|
|
@stop
|