1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/error.blade.php

28 lines
523 B
PHP
Raw Normal View History

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