2015-03-29 14:37:42 +02:00
|
|
|
@extends('master')
|
|
|
|
|
|
|
|
@section('head')
|
|
|
|
|
|
|
|
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
|
|
<link href="{{ asset('css/style.css') }}" rel="stylesheet" type="text/css"/>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
padding-top: 40px;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
}
|
|
|
|
.modal-header h4 {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
.modal-header img {
|
|
|
|
float: left;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
|
|
|
|
{!! Former::open('login')->rules(['email' => 'required|email', 'password' => 'required'])->addClass('form-signin') !!}
|
2015-03-31 20:50:58 +02:00
|
|
|
{{ Former::populateField('remember', 'true') }}
|
|
|
|
|
2015-03-29 14:37:42 +02:00
|
|
|
<div class="modal-header">
|
|
|
|
<img src="{{ asset('images/icon-login.png') }}" />
|
|
|
|
<h4>Invoice Ninja | {{ trans('texts.account_login') }}</h4></div>
|
|
|
|
<div class="inner">
|
|
|
|
<p>
|
|
|
|
{!! Former::text('email')->placeholder(trans('texts.email_address'))->raw() !!}
|
|
|
|
{!! Former::password('password')->placeholder(trans('texts.password'))->raw() !!}
|
2015-03-31 20:50:58 +02:00
|
|
|
{!! Former::hidden('remember')->raw() !!}
|
2015-03-29 14:37:42 +02:00
|
|
|
</p>
|
|
|
|
|
2015-03-31 20:50:58 +02:00
|
|
|
<p>{!! Button::success(trans('texts.lets_go'))->large()->submit()->block() !!}</p>
|
2015-03-29 14:37:42 +02:00
|
|
|
|
|
|
|
<p class="link">
|
2015-03-30 17:20:53 +02:00
|
|
|
{!! link_to('/forgot', trans('texts.forgot_password')) !!}
|
2015-04-16 19:12:56 +02:00
|
|
|
{!! link_to(NINJA_WEB_URL.'/knowledgebase/', trans('texts.knowledge_base'), ['target' => '_blank', 'class' => 'pull-right']) !!}
|
2015-03-29 14:37:42 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
@if (count($errors->all()))
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{!! Former::close() !!}
|
|
|
|
|
|
|
|
@if (!Utils::isNinja())
|
|
|
|
<p/>
|
|
|
|
<center>
|
2015-04-12 16:18:05 +02:00
|
|
|
<!--
|
2015-03-29 14:37:42 +02:00
|
|
|
<div id="fb-root"></div>
|
|
|
|
<script>(function(d, s, id) {
|
|
|
|
var js, fjs = d.getElementsByTagName(s)[0];
|
|
|
|
if (d.getElementById(id)) return;
|
|
|
|
js = d.createElement(s); js.id = id;
|
|
|
|
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=635126583203143";
|
|
|
|
fjs.parentNode.insertBefore(js, fjs);
|
|
|
|
}(document, 'script', 'facebook-jssdk'));</script>
|
|
|
|
|
|
|
|
<div class="fb-follow" data-href="https://www.facebook.com/invoiceninja" data-colorscheme="light" data-layout="button" data-show-faces="false"></div>
|
|
|
|
|
|
|
|
<a href="https://twitter.com/invoiceninja" class="twitter-follow-button" data-show-count="false" data-related="hillelcoren" data-size="medium">Follow @invoiceninja</a>
|
|
|
|
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
|
|
|
|
|
|
|
|
<iframe src="https://ghbtns.com/github-btn.html?user=hillelcoren&repo=invoice-ninja&type=star&count=false" frameborder="0" scrolling="0" width="50px" height="20px"></iframe>
|
2015-04-12 16:18:05 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
<p> </p>
|
|
|
|
|
|
|
|
<iframe allowTransparency="true" frameborder="0" scrolling="no" src="https://bitnami.com/product/invoice-ninja/widget" style="border:none;width:230px; height:100px;"></iframe>
|
|
|
|
|
2015-03-29 14:37:42 +02:00
|
|
|
</center>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endsection
|