Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eaponiente/fdc9515f04c07b7e25df5a0f89f25733 to your computer and use it in GitHub Desktop.
Save eaponiente/fdc9515f04c07b7e25df5a0f89f25733 to your computer and use it in GitHub Desktop.
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Login Credentials</title>
<meta name="description" content="Sufee Admin - HTML5 Admin Template">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-icon.png">
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="{!! url ('assets/css/normalize.css') !!}">
<link rel="stylesheet" href="{!! url ('assets/css/bootstrap.min.css') !!}">
<link rel="stylesheet" href="{!! url ('assets/css/font-awesome.min.css') !!}">
<link rel="stylesheet" href="{!! url ('assets/css/themify-icons.css') !!}">
<link rel="stylesheet" href="{!! url ('assets/css/flag-icon.min.css') !!}">
<link rel="stylesheet" href="{!! url ('assets/css/cs-skin-elastic.css') !!}">
<!-- <link rel="stylesheet" href="assets/css/bootstrap-select.less"> -->
<link rel="stylesheet" href="{!! url('assets/scss/style.css') !!}">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800' rel='stylesheet' type='text/css'>
<!-- <script type="text/javascript" src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv.min.js"></script> -->
</head>
<body class="bg-dark">
<div class=" d-flex align-content-center flex-wrap">
<div class="container">
<div class="login-content">
<div class="login-logo">
<a href="index.html">
<img class="align-content" src="images/logo.png" alt="">
</a>
</div>
<div class="login-form">
<form action="{!! url('login') !!}" id="form_login" method="post">
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
<div class="form-group">
<label>Username</label>
<input type="Username" class="form-control" name="username" placeholder="Enter Username">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control" name="password" placeholder="Enter Password">
</div>
<button type="submit" class="btn btn-success btn-flat m-b-30 m-t-30">Login</button>
</form>
</div>
</div>
</div>
</div>
<script src="assets/js/vendor/jquery-2.1.4.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/plugins.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment