@section('page_title') OSAA - Login @stop @section('page_sub_title') OSAA Account Login @stop @section('scripts') @parent @stop @section('jquery_init') $('.button').button(); /* Display any success messages */ $('.success_message').delay(5000).fadeOut({'duration' : 2500}); $('.success_message .ui-icon-close').click(function () { $('.success_message').hide(); }); /* * Flash the unknown email icon */ function animateUnknownEmail(step) { var element = $('.user-not-found img'); var delay = 0; if (step < 2) { if (step == 1) { delay = 800; } element.delay(delay).animate({ 'background-color' : '#FF0000'}, 400, 'swing', function() { animateUnknownEmail(2) }); } if (step == 2) { element.animate({ 'background-color' : '#ffffff'}, 500, 'linear', function () { animateUnknownEmail(1) }); } } animateUnknownEmail(0); @stop @section('page_functions') @stop @section('main_content') @if (Session::get('success'))
{{ Session::get('success') }}
@endif

Welcome

Please use the login form to gain access to the OSAA website. You can also create an account if you don't have one already.

Login

Login with your existing account.

{{ Form::open(array('url' => url('/account/login'), 'class' => 'login')) }} @if (Session::has('user-not-found') or Session::has('user-not-found-2')) {{ Form::hidden('previous-attempt', Session::get('user-not-found')) }} @endif @if (Session::has('errors'))
@foreach ($errors->all() as $error) {{ $error }} @endforeach
@endif {{ Form::label('email', 'E-Mail Address', array('class' => 'input_label')) }} {{ Form::text('email')}}

{{ Form::label('password', 'Password', array('class' => 'input_label')) }} {{ Form::password('password') }}

{{ Form::checkbox('remember_me', 'true', true, array('class' => 'check_box')) }} Remember me?
{{ Form::submit('Login', array('class' => 'submit button')) }} {{ Form::close() }}

I forgot my account information.


Having Trouble Logging In?
Are you a coach? Are you looking for a login to update your online coaching certifications?
» Coach's Login thru the NFHS Learning Center

@if (Session::has('user-not-found-2') or Input::has('test'))

Unknown Email Address


The email address you entered is not in the database.
  • Please ensure you are using the same email address that you used when you registered your OSAA website user account.
  • If you are attempting to take an online training course, your login may be associated with the NFHS Learning Center.
@endif

Register

If you are a school administrator, coach, or other website user, you'll need to create an account and attach yourself to a school to edit schedules, rosters, and to access forms. Setting up an account only takes a few seconds.

Here's what you'll need:


Register for a new account.









Please refer to the privacy policy for additional information regarding data collection and information security.

@stop