暂无描述

login.blade.php 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @extends('layouts/auth')
  2. @section('session-messages')
  3. @if(Session::get('status'))
  4. <div class="row">
  5. <div class="col-md-4 col-md-offset-4">
  6. <div class="alert alert-{{ Session::get('status') }}" role="alert">
  7. {{ Session::get('message') }}
  8. </div>
  9. </div>
  10. </div>
  11. @endif
  12. @stop
  13. @section('form')
  14. {{ Form::open(array('action' => 'AuthController@login')) }}
  15. <!-- <div class="alert alert-warning">
  16. </div>
  17. <div class="alert alert-warning">
  18. <p>Accede a OLAS utilizando el correo electrónico y contraseña de su cuenta institucional (@upr.edu). De tener inconvenientes accediendo favor de llamar a la mesa de ayuda de la UPR-RP al 787-764-0000, Ext. 80400.</p>
  19. </div> -->
  20. <!-- <div class="alert alert-warning">
  21. <p>El lunes 11 de marzo de 2019 estaremos haciendo trabajos de mantenimiento a la aplicación a partir de las 8:00am hasta 1:00pm.</p>
  22. </div>
  23. <div class="alert alert-warning">
  24. <p>We will be performing maintenance tasks the next Monday (March 11 , 2019) from 8:00am to 1:00pm.</p>
  25. </div> -->
  26. <div class="form-group">
  27. <input type="email" class="form-control" id="email" name="email" placeholder="Email (@upr.edu)" aria-label="email">
  28. </div>
  29. <div class="form-group">
  30. <input type="password" class="form-control" id="password" name="password" placeholder="Password" aria-label="password">
  31. </div>
  32. <button type="submit" class="btn btn-block btn-default">Log In</button>
  33. {{ Form::close() }}
  34. <br>
  35. <p>Log in using your institutional email address (@upr.edu) and password.</p>
  36. <p>If you have problems logging in, please call the UPR-RP Help Desk (DTAA) at 787-764-0000, Ext.80400 for assistance.</p>
  37. <!--<h4>DISCLAIMER</h4>
  38. <p>OLAS (Online Learning Assessment System) is still in development. The website, its software and all content found on it are provided on an "as is" and "as available" basis. OLAS does not give any warranties, whether express or implied, as to the suitability or usability of the website, its software or any of its content.</p>
  39. <p>OLAS will not be liable for any loss, whether such loss is direct, indirect, special or consequential, suffered by any party as a result of their use of the OLAS website, its software or content. Any downloading or uploading of material to the website is done at the user's own risk and the user will be solely responsible for any damage to any computer system or loss of data that results from such activities.</p>
  40. <p>Should you encounter any bugs, glitches, lack of functionality or other problems on the website, please let us know immediately so we can rectify these accordingly. Your help in this regard is greatly appreciated.</p>-->@stop