@section('page_title') OSAA - Music Registration Form @stop @section('page_sub_title') Application to Participate in the Music State Championships @stop @section('scripts') @parent @stop @section('jquery_init') // Back button $('.back_button') .button({icons : { primary : ' ui-icon-arrowthick-1-w'} }) .css({'font-size' : '9pt'}); // Next button $('.next_button') .button() .css({'font-size' : '9pt'}); // Help button $('.help_button') .button({'icons':{'primary':'ui-icon-help'}}) .css({'font-size':'9pt', 'margin-right':'10px'}) .click(function(event) { event.preventDefault(); var topic = 'registration_category'; var category = '{{ $info['division'] }}'; $('
') .appendTo('body') .dialog( { draggable : true, resizable : true, height : 725, minHeight : 400, width : 615, minWidth : 330, modal : false, title : 'Help', open : function () { var dialog_object = $(this); dialog_object.html("
"); var jqxhr = $.ajax( { type : 'GET', url : '{{ url('forms/music/help') }}?topic=' + topic + '&category=' + category, dataType : 'html' }) .done(function (returned_data) { dialog_object.html(returned_data); }) .fail(function (jqXHR, status, error) { var response = jqXHR.responseText; var errorData = $.parseJSON(response); console.log(errorData); alert ("There was an error looking up help information.\n\nThis page will be reloaded."); location.reload(); }) .complete(function () { }); }, close : function () { var dialog_object = $(this); $(dialog_object).remove(); } }); }); @stop @section('page_functions') Help Back @stop @section('main_content')

State {{ ucwords(str_replace('-', ' ', str_replace('concert-', '', $info['division']))) }} Registration Form


Instructions
  1. Select your school from the drop-down list.
  2. Click the "Next" button to continue.
  3. You can go back to the main music application page by clicking the "Back" button.

Note: This online application form closes {{ date('g:ia, D F j, Y', strtotime($info['due_dates'][$info['division']])) }}. Late entry forms will not be accepted. Support materials must be received by {{ date('g:ia, D F j, Y', strtotime($info['due_dates']['support_materials'])) }}.

For questions, click the "Help" button for full details and instructions. If you need assistance, you can contact {{ $info['staff']->name }} at {{ $info['staff']->phone }} or by e-mail to {{ Helpers::obfuscateEmailLink ($info['staff']->email) }}.

@if (Session::has('errors'))
@foreach ($errors->all() as $error){{ $error }} @endforeach

@endif @if (count($info['ap_options']) > 0) {{ Form::open(array('class' => 'registration_form')) }}

Select your school

{{ Form::submit('Next', array('class' => 'next_button')) }} {{ Form::close() }} @else

No Schools to Select

It looks like you do not have access to any schools that qualified as an automatic qualifier or tape pool qualifier at a state qualifying event. There could be a variety of reasons for this:

@endif @stop