1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/login.blade.php
2018-02-15 10:38:15 +02:00

35 lines
1.4 KiB
PHP

@extends('master')
@section('head')
@if (!empty($clientauth) && $fontsUrl = Utils::getAccountFontsUrl())
<link href="{!! $fontsUrl !!}" rel="stylesheet" type="text/css">
@endif
<link href="{{ asset('css/built.public.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/bootstrap.min.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/built.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/built.login.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
@if (!empty($clientauth))
<style type="text/css">{!! Utils::clientViewCSS() !!}</style>
@endif
@endsection
@section('body')
@if (!Utils::isWhiteLabel())
<div class="container-fluid">
<div class="row header">
<div class="col-md-6 col-xs-12 text-center">
<a href="https://www.invoiceninja.com/" target="_blank">
<img width="231" src="{{ asset('images/invoiceninja-logox53.png') }}"/>
</a>
</div>
<div class="col-md-6 text-right visible-lg">
<p>{{trans('texts.ninja_tagline')}}</p>
</div>
</div>
</div>
@endif
@yield('form')
@endsection