mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
85 lines
1.9 KiB
PHP
Executable File
85 lines
1.9 KiB
PHP
Executable File
@extends('master')
|
|
|
|
@section('head')
|
|
|
|
<link href="{{ asset('vendor/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
|
|
<style type="text/css">
|
|
body {
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
background-color: #eee !important;
|
|
}
|
|
|
|
.form-signin {
|
|
max-width: 450px;
|
|
padding: 15px;
|
|
margin: 0 auto;
|
|
}
|
|
.form-signin .form-signin-heading,
|
|
.form-signin .checkbox {
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-signin .checkbox {
|
|
font-weight: normal;
|
|
}
|
|
.form-signin .form-control {
|
|
position: relative;
|
|
font-size: 16px;
|
|
height: auto;
|
|
padding: 10px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.form-signin .form-control:focus {
|
|
z-index: 2;
|
|
}
|
|
.form-signin input[type="text"] {
|
|
margin-bottom: -1px;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
.form-signin input[type="password"] {
|
|
margin-bottom: 10px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
</style>
|
|
|
|
@stop
|
|
|
|
@section('body')
|
|
<div class="container">
|
|
|
|
{{ Former::open('user/reset')->addClass('form-signin')->rules(array(
|
|
'password' => 'required',
|
|
'password_confirmation' => 'required',
|
|
)); }}
|
|
|
|
<h2 class="form-signin-heading">Passord Reset</h2>
|
|
<input type="hidden" name="token" value="{{{ $token }}}">
|
|
|
|
<p>
|
|
{{ Former::password('password') }}
|
|
{{ Former::password('password_confirmation')->label('Confirm') }}
|
|
|
|
</p>
|
|
|
|
<p>{{ Button::primary_submit('Save', array('class' => 'btn-lg'))->block() }}</p>
|
|
|
|
<!-- if there are login errors, show them here -->
|
|
@if ( Session::get('error') )
|
|
<div class="alert alert-error">{{{ Session::get('error') }}}</div>
|
|
@endif
|
|
|
|
@if ( Session::get('notice') )
|
|
<div class="alert">{{{ Session::get('notice') }}}</div>
|
|
@endif
|
|
|
|
|
|
{{ Former::close() }}
|
|
|
|
</div>
|
|
|
|
@stop |