<?php $__env->startSection('styles'); ?>
  <?php echo HTML::style('css/login/login.css'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
	<div class="container login">
		<h1 class="text-center">Log in to Curo</h1>

		<form role="form" onsubmit="login(event);return false;" id="login-form" method="post">
			<div id="login-error"></div>
			<input type="text" placeholder="email" id="email" name="email">
			<input type="password" placeholder="password" id="password" name="password">
			<input type="submit" value="Login" class="btn block">
		</form> 
		<p class="forgot-password" id="login-form"><a href="">Forgot Password?</a></p>
	</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>