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

<?php $__env->startSection('page_sub_title'); ?>    
   OSAA Change Account Password
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    @parent


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

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

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

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


<?php $__env->startSection('main_content'); ?>    	
	
	<div class="columns">

		<div class="half">

			<h1>Change Password</h1>

			<?php echo Form::open(array('url' => url('/account/reset-password'), 'class' => 'login')); ?>

			<?php if (Session::has('errors')): ?>                
                <div class="error"><?php foreach ($errors->all() as $error): ?><?php echo $error; ?> <?php endforeach; ?></div>                        
            <?php endif; ?>
			
			<?php echo Form::label('old_password', 'Current Password', array('class' => 'input_label', 'style' => 'width:200px;')); ?>
			<?php echo Form::password('old_password'); ?>

			<br /><br />

			<?php echo Form::label('new_password', 'New Password', array('class' => 'input_label', 'style' => 'width:200px;')); ?>
			<?php echo Form::password('new_password'); ?>

			<br /><br />

			<?php echo Form::label('confirm', 'Retype New Password', array('class' => 'input_label', 'style' => 'width:200px;')); ?>
			<?php echo Form::password('confirm'); ?>

			<br /><br />						

			<?php echo Form::submit('Set New Password', array('class' => 'submit', 'style' => 'margin-left:249px;')); ?>


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

		<div class="half">
			<h2>Directions</h2>
			<p>
				Please fill in the following information to change your password.  You will need to enter your current password
				in order to verify you are the actual account owner.
			</p>
			<p>
				Passwords must be 8-16 characters and can include letters, numbers, or special characters.
			</p>
		</div>
	</div>

	<br class="clear" /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />

	<h2>Why do I have to change my password?</h2>

	<p>
		If you requested your password to be reset, you were sent an e-mail containing a temporary password.  Once you logged in with that
		temporary password, you must change your password to something that you specify.
	</p>
	<p>
		If this is your first time logging in on the updated OSAA website, you will be asked to change your password.  Your account was setup for
		you automatically in the system with a default password.  Since you logged in for the first time using that default password, we are ask that
		you change your password to something you specify.
	</p>

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