<?php $__env->startSection('page_title'); ?>
    OSAA - Login
<?php $__env->stopSection(); ?>


<?php $__env->startSection('page_sub_title'); ?>
   Log In
<?php $__env->stopSection(); ?>



<?php $__env->startSection('head'); ?>
    
    <link rel="stylesheet" href="<?php echo asset('css/fontello.css'); ?>">

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


<?php $__env->startSection('header_button_left'); ?>
    <a href="#" class="jqm-navmenu-link ui-nodisc-icon ui-alt-icon ui-btn-left ui-btn ui-icon-arrow-l ui-btn-icon-notext ui-corner-all" onClick="window.history.back(); return false;">Back</a>

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

<?php $__env->startSection('jquery_init'); ?>
 

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


<?php $__env->startSection('main_content'); ?>

<?php echo Form::open(array('url' => url('/mobile/login'), 'class' => 'login')); ?>

<?php echo Form::label('email', 'E-Mail Address'); ?>
<?php echo Form::email('email'); ?>

<?php echo Form::label('password', 'Password'); ?>
<?php echo Form::password('password'); ?>

<fieldset data-role="controlgroup">
    <input type="checkbox" name="remember_me" id="remember_me">
    <label for="remember_me">Remember me?</label>
</fieldset>


<?php echo Form::submit('Login'); ?>


<?php echo Form::close(); ?>


<a href="<?php echo url('/mobile/recover'); ?>" class="ui-shadow ui-btn ui-corner-all ui-mini" data-role="button">I forgot my account information.</a>

Please refer to the <a href="<?php echo url ('/mobile/privacy'); ?>">privacy policy</a> for additional information regarding data collection and information security.


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

