85 lines
3.1 KiB
PHP
85 lines
3.1 KiB
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<title>InfyOm Laravel Generator</title>
|
||
|
|
||
|
<!-- Tell the browser to be responsive to screen width -->
|
||
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||
|
|
||
|
<!-- Bootstrap 3.3.6 -->
|
||
|
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
|
||
|
|
||
|
<!-- Font Awesome -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
|
||
|
|
||
|
<!-- Ionicons -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
|
||
|
|
||
|
<!-- Theme style -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/admin-lte/2.3.3/css/AdminLTE.min.css">
|
||
|
|
||
|
<!-- iCheck -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/admin-lte/2.3.3/css/skins/_all-skins.min.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/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||
|
<![endif]-->
|
||
|
|
||
|
</head>
|
||
|
<body class="hold-transition login-page">
|
||
|
<div class="login-box">
|
||
|
<div class="login-logo">
|
||
|
<a href="{{ url('/home') }}"><b>InfyOm </b>Generator</a>
|
||
|
</div>
|
||
|
|
||
|
<!-- /.login-logo -->
|
||
|
<div class="login-box-body">
|
||
|
<p class="login-box-msg">Enter Email to reset password</p>
|
||
|
|
||
|
@if (session('status'))
|
||
|
<div class="alert alert-success">
|
||
|
{{ session('status') }}
|
||
|
</div>
|
||
|
@endif
|
||
|
|
||
|
<form method="post" action="{{ url('/password/email') }}">
|
||
|
{!! csrf_field() !!}
|
||
|
|
||
|
<div class="form-group has-feedback {{ $errors->has('email') ? ' has-error' : '' }}">
|
||
|
<input type="email" class="form-control" name="email" value="{{ old('email') }}" placeholder="Email">
|
||
|
<span class="glyphicon glyphicon-envelope form-control-feedback"></span>
|
||
|
@if ($errors->has('email'))
|
||
|
<span class="help-block">
|
||
|
<strong>{{ $errors->first('email') }}</strong>
|
||
|
</span>
|
||
|
@endif
|
||
|
</div>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<button type="submit" class="btn btn-primary pull-right">
|
||
|
<i class="fa fa-btn fa-envelope"></i> Send Password Reset Link
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</form>
|
||
|
|
||
|
</div>
|
||
|
<!-- /.login-box-body -->
|
||
|
</div>
|
||
|
<!-- /.login-box -->
|
||
|
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
|
||
|
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
||
|
|
||
|
<!-- AdminLTE App -->
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/admin-lte/2.3.3/js/app.min.js"></script>
|
||
|
</body>
|
||
|
</html>
|