mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
104 lines
5.4 KiB
PHP
Executable File
104 lines
5.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="assetimage/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">
|
|
<!-- 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]-->
|
|
</head>
|
|
<body>
|
|
<!-- Preloader -->
|
|
<div class="preloader">
|
|
<div class="cssload-speeding-wheel"></div>
|
|
</div>
|
|
<section id="wrapper" class="login-register">
|
|
<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('auth.reset') }}">
|
|
{{ csrf_field() }}
|
|
|
|
<a href="javascript:void(0)" class="text-center db">
|
|
<img src="{{ asset('uploads/logo/kags.png') }}" alt="Home" /><br/>
|
|
</a>
|
|
|
|
{{ csrf_field() }}
|
|
<div class="form-group ">
|
|
<div class="col-xs-12">
|
|
<h3>{{ __('users.reset_password') }}</h3>
|
|
<p class="text-muted">{{ __('users.please_enter_pwd') }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group ">
|
|
<div class="col-xs-12">
|
|
<input type="hidden" value="<?php echo $id ?>" name="id">
|
|
<input class="form-control compulsory" value="<?php echo $username ?>" readonly name="full_name" type="text">
|
|
</div>
|
|
</div>
|
|
<div class="form-group ">
|
|
<div class="col-xs-12">
|
|
<input class="form-control compulsory" name="password" type="password" required minlength="6">
|
|
</div>
|
|
</div>
|
|
<div class="form-group ">
|
|
<div class="col-xs-12">
|
|
<input class="form-control compulsory" name="password_confirm" type="password" required minlength="6">
|
|
</div>
|
|
</div>
|
|
<div class="form-group text-center m-t-20">
|
|
<div class="col-xs-12">
|
|
<button class="btn btn-success btn-lg btn-block text-uppercase waves-effect waves-light" type="submit">{{ __('users.reset') }}</button>
|
|
</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>
|