mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
154 lines
9.1 KiB
PHP
154 lines
9.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="<?php echo e(app()->getLocale()); ?>">
|
|
<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="">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo e(asset('uploads/streamline/color/streamline_icon-02.png')); ?>">
|
|
<title><?php echo e(config('app.name')); ?></title>
|
|
<!-- Bootstrap Core CSS -->
|
|
<link href="<?php echo e(asset('elite/bootstrap/dist/css/bootstrap.min.css')); ?>" rel="stylesheet">
|
|
<link href="<?php echo e(asset('elite/bower_components/bootstrap-extension/css/bootstrap-extension.css')); ?>" rel="stylesheet">
|
|
<!-- animation CSS -->
|
|
<link href="<?php echo e(asset('elite/css/animate.css')); ?>" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link href="<?php echo e(asset('elite/css/style.css')); ?>" rel="stylesheet">
|
|
<!-- color CSS -->
|
|
<link href="<?php echo e(asset('elite/css/colors/megna.css')); ?>" id="theme" rel="stylesheet">
|
|
|
|
<!-- Streamline - custom -->
|
|
<link href="<?php echo e(asset('css/streamline-custom.css')); ?>" id="theme" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<!-- Preloader -->
|
|
<div class="preloader">
|
|
<div class="cssload-speeding-wheel"></div>
|
|
</div>
|
|
<section id="wrapper" class="login-register" style="background:url(../../uploads/streamline_images/login_cover.png) center center/cover no-repeat!important;">
|
|
<div class="login-box login-sidebar">
|
|
<div class="white-box">
|
|
<!--Flash messages at the top -->
|
|
<div><?php echo $__env->make('flash::message', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?></div>
|
|
<!--<div class="white-box">-->
|
|
|
|
<?php if($message = Session::get('success')): ?>
|
|
<div class="alert alert-success">
|
|
<p><?php echo e($message); ?></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<form class="form-horizontal form-material" id="loginform" method="POST" action="<?php echo e(route('login')); ?>">
|
|
<?php echo e(csrf_field()); ?>
|
|
|
|
|
|
<a href="javascript:void(0)" class="text-center db">
|
|
<img src="<?php echo e(asset(isset($hospital_information->logo) ? $hospital_information->logo :'uploads/logo/logo.png')); ?>" height="120px" alt="Home" /><br/>
|
|
</a>
|
|
|
|
<div class="form-group m-t-40 <?php echo e($errors->has('username') ? ' has-error' : ''); ?>">
|
|
<div class="col-xs-12">
|
|
<input class="form-control" type="text" name="username" required value="<?php echo e(old('username')); ?>" autofocus placeholder="<?php echo e(__('auth.username')); ?>">
|
|
<?php if($errors->has('username')): ?>
|
|
<span class="help-block">
|
|
<strong><?php echo e($errors->first('username')); ?></strong>
|
|
</span>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<div class="form-group <?php echo e($errors->has('password') ? ' has-error' : ''); ?>">
|
|
<div class="col-xs-12">
|
|
<input class="form-control" type="password" name="password" required="" placeholder="<?php echo e(__('auth.password')); ?>">
|
|
<?php if($errors->has('password')): ?>
|
|
<span class="help-block">
|
|
<strong><?php echo e($errors->first('password')); ?></strong>
|
|
</span>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-md-12">
|
|
<div class="checkbox checkbox-primary pull-left p-t-0">
|
|
<input id="checkbox-signup" type="checkbox" name="remember" disabled="true" <?php echo e(old('remember') ? 'checked' : ''); ?>>
|
|
<label for="checkbox-signup"> <?php echo e(__('auth.remember_me')); ?> </label>
|
|
</div>
|
|
<a href="javascript:void(0)" id="to-recover" class="text-dark pull-right"><i class="fa fa-lock m-r-5"></i> <?php echo e(__('auth.reset_password')); ?></a> </div>
|
|
</div>
|
|
<div class="form-group text-center m-t-20">
|
|
<div class="col-xs-12">
|
|
<button class="btn btn-info btn-lg btn-block text-uppercase waves-effect waves-light" type="submit"><?php echo e(__('auth.log_in')); ?></button>
|
|
</div>
|
|
</div>
|
|
<div class="form-group m-b-0">
|
|
<div class="col-sm-12 text-center">
|
|
<p><?php echo e(__('auth.visit')); ?> <a href="http://www.streamlinehealth.org" target="_blank" class="text-primary m-l-4"><b>www.streamlinehealth.org</b></a></p>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<form class="form-horizontal" id="recoverform" method="POST" action="<?php echo e(route('reset.check')); ?>">
|
|
<?php echo e(csrf_field()); ?>
|
|
|
|
<div class="form-group ">
|
|
<div class="col-xs-12">
|
|
<h3><?php echo e(__('auth.reset_password')); ?></h3>
|
|
<p class="text-muted"><?php echo e(__('auth.login_prompt')); ?></p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group ">
|
|
<div class="col-xs-12">
|
|
<div class="form-group">
|
|
<?php echo e(Form::label('security_question_id',__('auth.recorded_security_question'))); ?>
|
|
|
|
<?php echo e(Form::select('security_question_id',$security_questions,'',['class' => 'form-control compulsory'])); ?>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<?php echo e(Form::label('security_answer',__('auth.security_answer'))); ?>
|
|
|
|
<?php echo e(Form::text('security_answer','',['class' => 'form-control compulsory','placeholder'=>'Security answer'])); ?>
|
|
|
|
</div>
|
|
|
|
<div class="form-group ">
|
|
<?php echo e(Form::label('pin',__('auth.your_pin'))); ?>
|
|
|
|
<?php echo e(Form::text('pin','',['class' => 'form-control compulsory','placeholder'=>'PIN'])); ?>
|
|
|
|
</div>
|
|
|
|
<div class="form-group ">
|
|
<button class="btn btn-success text-uppercase waves-effect waves-light float-right" type="submit"><?php echo e(__('auth.reset_password')); ?></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group text-center m-t-20">
|
|
<div class="col-xs-12">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- jQuery -->
|
|
<script src="<?php echo e(asset('elite/bower_components/jquery/dist/jquery.min.js')); ?>"></script>
|
|
<!-- Bootstrap Core JavaScript -->
|
|
<script src="<?php echo e(asset('elite/bootstrap/dist/js/tether.min.js')); ?>"></script>
|
|
<script src="<?php echo e(asset('elite/bootstrap/dist/js/bootstrap.min.js')); ?>"></script>
|
|
<script src="<?php echo e(asset('elite/bower_components/bootstrap-extension/js/bootstrap-extension.min.js')); ?>"></script>
|
|
<!-- Menu Plugin JavaScript -->
|
|
<script src="<?php echo e(asset('elite/bower_components/sidebar-nav/dist/sidebar-nav.min.js')); ?>"></script>
|
|
|
|
<!--slimscroll JavaScript -->
|
|
<script src="<?php echo e(asset('elite/js/jquery.slimscroll.js')); ?>"></script>
|
|
<!--Wave Effects -->
|
|
<script src="<?php echo e(asset('elite/js/waves.js')); ?>"></script>
|
|
<!-- Custom Theme JavaScript -->
|
|
<script src="<?php echo e(asset('elite/js/custom.min.js')); ?>"></script>
|
|
<!--Style Switcher -->
|
|
<script src="<?php echo e(asset('elite/bower_components/styleswitcher/jQuery.style.switcher.js')); ?>"></script>
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /var/www/html/resources/views/auth/login.blade.php ENDPATH**/ ?>
|