<p style="font-size: 10pt; line-height: 10pt;">
	<b>Instructions:</b> Use this form to create a new staff contact for your school.  Click <b>Create Contact</b> when finished.	
	<?php if (!is_null($info['school_district'])): ?>
		<br /><br />
		<span class="ui-icon ui-icon-alert box_icon"></span><b>Note:</b> Any new school district contact will be reflected for all schools in <?php echo $info['school_district']->name; ?>.
	<?php endif; ?>
</p>

<br />

<?php echo Form::open(array('url' => '/schools/staff/create', 'style' => 'font-size: 10pt; line-height: 10pt;')); ?>	

	<?php echo Form::hidden('school_id', $info['school']->id); ?>
	<?php if (!is_null($info['school_district'])): ?>
		<?php echo Form::hidden('school_district_id', $info['school_district']->id); ?>
	<?php endif; ?>

	<div style="float: left;">
		<?php echo Form::label('name_prefix', 'Prefix', array('style' => 'font-weight: bold; font-size: 8pt;')); ?> <span class="small gray" style="position: absolute;">(i.e. "Dr.")</span><br />
		<?php echo Form::text('name_prefix', null, array('style' => 'width: 90px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('first_name', 'First Name', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('first_name', null, array('style' => 'width: 120px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('middle_name', 'Middle Name', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('middle_name', null, array('style' => 'width: 90px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('last_name', 'Last Name', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('last_name', null, array('style' => 'width: 120px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('name_suffix', 'Suffix', array('style' => 'font-weight: bold; font-size: 8pt;')); ?> <span class="small gray" style="position: absolute;">(i.e. "III")</span><br />
		<?php echo Form::text('name_suffix', null, array('style' => 'width: 90px;')); ?>
	</div>

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

	<div style="float: left;">
		<?php echo Form::label('role', 'Role', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::select('role', $info['roles'], null, array('style' => '')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('alt_title', 'Alternate Title', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('alt_title', null, array('style' => 'width: 160px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('staff_type', 'Staff Type', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::select('staff_type', $info['staff_types'], null, array('style' => '')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('is_on_rosters', 'Shown on Rosters?', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />		
		<?php echo Form::select('is_on_rosters', array(0 => 'No', 1 => 'Yes'), 0, array('disabled' => 'disabled', 'style' => '')); ?>		
	</div>

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

	<div style="float: left;">
		<?php echo Form::label('email', 'Email Address', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('email', null, array('style' => 'width: 250px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('work_phone', 'Work Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('work_phone', null, array('style' => 'width: 135px;')); ?>
	</div>

	<div style="float: left; margin-left: 20px;">
		<?php echo Form::label('mobile_phone', 'Mobile Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')); ?><br />
		<?php echo Form::text('mobile_phone', null, array('style' => 'width: 135px;')); ?>
	</div>

	<?php if (Auth::check() and Auth::user()->isOsaaUser()): ?>

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

		<div style="float: left;">
			<?php echo Form::label('staff_notes', 'OSAA Staff Notes', array('style' => 'font-weight: bold; font-size: 8pt;')); ?> <span class="small gray" style="position: absolute;">(only visible to OSAA staff)</span><br />
			<?php echo Form::textarea('staff_notes', null, array('style' => 'width: 650px; height: 3em;')); ?>
		</div>

	<?php endif; ?>

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