1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/error.blade.php
Hillel Coren 723aa285f5 Bug fixes
2015-04-27 15:28:40 +03:00

28 lines
523 B
PHP

@extends('public.header')
@section('content')
<p>&nbsp;<p>
<p>&nbsp;<p>
<div class="well">
<div class="container" style="min-height:400px">
<h3>Something went wrong...</h3>
{{ $error }}
<h4>If you'd like help please email us at contact@invoiceninja.com.</h4>
</div>
</div>
<p>&nbsp;<p>
<p>&nbsp;<p>
<script type="text/javascript">
$(function() {
var height = $(window).height() - ($('.navbar').height() + $('footer').height() + 200);
$('.well').height(Math.max(200, height));
});
</script>
@stop