<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">	
	<title><?php echo AppHelper::config('site_name'); ?> | Login</title>
	<!-- <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
	<link rel="icon" href="images/favicon.ico" type="image/x-icon"> -->
	<!-- Bootstrap CSS -->

	<link rel="stylesheet" type="text/css" href="<?php echo URL('admin/assets/css/bootstrap.min.css'); ?>">
	<link rel="stylesheet" href="<?php echo URL('admin/assets/css/material.css'); ?>">
	<link rel="stylesheet" href="<?php echo URL('admin/assets/css/material.css'); ?>">
	<link rel="stylesheet" type="text/css" href="<?php echo URL('/admin/assets/css/style.css'); ?>">	
	<link rel="stylesheet" type="text/css" href="<?php echo URL('admin/assets/css/signin2.css'); ?>">	
	
	<!-- custom scrollbar stylesheet -->	
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> <!--320-->
</head>
<body>

	<div class="flip-container">
		<?php echo Form::open(array('url' => 'login')); ?>

		<div class="flipper">
			<div class="front">
				<!-- front content -->
				<div class="holder">
					<h1 class="heading"><?php echo AppHelper::config('site_name'); ?></h1>				
					<input class="form-control" type="text" name="email" id="email" placeholder="username">					
					<input type="password" class="form-control" name="password" id="password" placeholder="password">							
					<div class="clearfix"></div>
					<button type="submit" class="btn btn-primary btn-block">Sign in</button>					
				</div>
			</div>			
		</div>	
		</div>	
	</div>


	<script src="<?php echo URL('admin/assets/js/jquery.js'); ?>"></script>
	<script src="<?php echo URL('admin/assets/js/bootstrap.min.js'); ?>"></script>	
</body>
</html>