Files
streamline-emr/docker/_streamline-src/resources/views/auth/login.blade.php
T

146 lines
8.4 KiB
PHP
Executable File

<!DOCTYPE html>
<html lang="{{ 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="{{ asset('uploads/streamline/color/streamline_icon-02.png') }}">
<title>{{ config('app.name') }}</title>
<!-- Bootstrap Core CSS -->
<link href="{{ asset('elite/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset('elite/bower_components/bootstrap-extension/css/bootstrap-extension.css') }}" rel="stylesheet">
<!-- animation CSS -->
<link href="{{ asset('elite/css/animate.css') }}" rel="stylesheet">
<!-- Custom CSS -->
<link href="{{ asset('elite/css/style.css') }}" rel="stylesheet">
<!-- color CSS -->
<link href="{{ asset('elite/css/colors/megna.css') }}" id="theme" rel="stylesheet">
<!-- Streamline - custom -->
<link href="{{ 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>@include('flash::message')</div>
<!--<div class="white-box">-->
@if ($message = Session::get('success'))
<div class="alert alert-success">
<p>{{ $message }}</p>
</div>
@endif
<form class="form-horizontal form-material" id="loginform" method="POST" action="{{ route('login') }}">
{{ csrf_field() }}
<a href="javascript:void(0)" class="text-center db">
<img src="{{ 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 {{ $errors->has('username') ? ' has-error' : '' }}">
<div class="col-xs-12">
<input class="form-control" type="text" name="username" required value="{{ old('username') }}" autofocus placeholder="{{ __('auth.username') }}">
@if ($errors->has('username'))
<span class="help-block">
<strong>{{ $errors->first('username') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group {{ $errors->has('password') ? ' has-error' : '' }}">
<div class="col-xs-12">
<input class="form-control" type="password" name="password" required="" placeholder="{{ __('auth.password') }}">
@if ($errors->has('password'))
<span class="help-block">
<strong>{{ $errors->first('password') }}</strong>
</span>
@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" {{ old('remember') ? 'checked' : '' }}>
<label for="checkbox-signup"> {{ __('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> {{ __('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">{{ __('auth.log_in') }}</button>
</div>
</div>
<div class="form-group m-b-0">
<div class="col-sm-12 text-center">
<p>{{ __('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="{{ route('reset.check') }}">
{{ csrf_field() }}
<div class="form-group ">
<div class="col-xs-12">
<h3>{{ __('auth.reset_password') }}</h3>
<p class="text-muted">{{ __('auth.login_prompt') }}</p>
</div>
</div>
<div class="form-group ">
<div class="col-xs-12">
<div class="form-group">
{{ Form::label('security_question_id',__('auth.recorded_security_question')) }}
{{ Form::select('security_question_id',$security_questions,'',['class' => 'form-control compulsory']) }}
</div>
<div class="form-group">
{{ Form::label('security_answer',__('auth.security_answer')) }}
{{ Form::text('security_answer','',['class' => 'form-control compulsory','placeholder'=>'Security answer']) }}
</div>
<div class="form-group ">
{{ Form::label('pin',__('auth.your_pin')) }}
{{ 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">{{ __('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="{{ asset('elite/bower_components/jquery/dist/jquery.min.js') }}"></script>
<!-- Bootstrap Core JavaScript -->
<script src="{{ asset('elite/bootstrap/dist/js/tether.min.js') }}"></script>
<script src="{{ asset('elite/bootstrap/dist/js/bootstrap.min.js') }}"></script>
<script src="{{ asset('elite/bower_components/bootstrap-extension/js/bootstrap-extension.min.js') }}"></script>
<!-- Menu Plugin JavaScript -->
<script src="{{ asset('elite/bower_components/sidebar-nav/dist/sidebar-nav.min.js') }}"></script>
<!--slimscroll JavaScript -->
<script src="{{ asset('elite/js/jquery.slimscroll.js') }}"></script>
<!--Wave Effects -->
<script src="{{ asset('elite/js/waves.js') }}"></script>
<!-- Custom Theme JavaScript -->
<script src="{{ asset('elite/js/custom.min.js') }}"></script>
<!--Style Switcher -->
<script src="{{ asset('elite/bower_components/styleswitcher/jQuery.style.switcher.js') }}"></script>
</body>
</html>