Файл: src/storage/framework/views/a9bfe422b6c9ba06400462496a6a9cde499be9ba.php
Строк: 146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="kaan_kilic">
<title>Invoicify - Invoice Management System v1.0</title>
<!-- Bootstrap Core CSS -->
<link href="<?php echo e(asset('css/bootstrap.min.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('css/style.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('plugins/linearicons/style.css')); ?>" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
.form-group {
outline: none;
}
.panel-login{
width:350px;
margin: 100px auto 20px;
}
.login-heading{
color:#333;
}
.login-heading > i{
font-size:40px;
}
.login{
margin: 100px auto 20px;
width: 350px;
}
.panel-login{
margin:0px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="page-container">
<div class="container">
<div class="row">
<div class="login">
<?php if(Session::get("ErrorMessage")): ?>
<div class="alert alert-danger alert-login" role="alert">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<strong><?php echo e(trans('messages.failure_header')); ?></strong>
<?php echo e(Session::get("ErrorMessage")); ?>
</div>
<?php endif; ?>
<?php if(Session::get("SuccessMessage")): ?>
<div class="alert alert-success alert-login" role="alert">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<strong>Well done!</strong>
<?php echo e(Session::get("SuccessMessage")); ?>
</div>
<?php endif; ?>
<div class="panel panel-login">
<div class="panel-body">
<div class="login-heading text-center">
<i class="lnr lnr-user"></i>
<h4 class="text-center"><?php echo e(trans('user.label_login_panel')); ?></h4>
<p><?php echo e(trans('user.label_login_subtext')); ?></p>
</div>
<?php echo Form::open(); ?>
<div class="input-group">
<span class="input-group-addon"><i class="lnr lnr-user"></i></span>
<?php echo Form::text('Username', null,['class'=>'form-control','placeholder'=>trans("user.label_username")]); ?>
</div>
<div style="display:block;height:20px;"></div>
<div class="input-group">
<span class="input-group-addon"><i class="lnr lnr-lock"></i></span>
<?php echo Form::password('Password',['class'=>'form-control','placeholder'=>trans("user.label_password")]); ?>
</div>
<div style="display:block;height:20px;"></div>
<button type="submit" class="btn btn-primary" style="width:100%;"><i class="lnr lnr-log"></i><?php echo e(trans('user.button_login')); ?></button>
<?php echo Form::close(); ?>
</div>
<div class="panel-footer">
<a href="<?php echo e(route('get.forgot_password')); ?>" title="<?php echo e(trans('user.label_forgot_password')); ?>">
<?php echo e(trans('user.label_forgot_password')); ?>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery Version 1.11.1 -->
<script src="<?php echo e(asset('js/jquery-1.12.1.min.js')); ?>"></script>
<!-- Bootstrap Core JavaScript -->
<script src="<?php echo e(asset('js/bootstrap.min.js')); ?>"></script>
</body>
</html>