暂无描述

agreement.blade.php 3.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. @extends('layouts.master')
  2. @section('main')
  3. <div class="row">
  4. <div class="col-md-12">
  5. The Family Educational Rights and Privacy Act of 1974 (FERPA) establishes parameters for the protection of the confidentiality of student academic information, recognizing their right to inspect and review their academic records. In 2012, an amendment was approved, which extended access conditions to any designated third party to private information of personal identification and to that found in academic records, including grades, with the purpose of academic progress evaluation. Consequently, seeking to improve, among many things, the effectiveness of said academic program.
  6. </p><p>
  7. Student learning assessment is an activity mandated by the institutional rules, and a practice tied to the teaching process which seeks to measure the effectiveness and promote transformation aimed at excellence. OLAS, an online platform created on Campus, compiles information about the performance of students through assessment rubrics developed and used by its users (assessment coordinators of both the Division of Institutional Research and Assessment and of the faculties, as well as professors) who compile and receive data.
  8. </p><p>
  9. FERPA defines an authorized representative as any entity or designated individual by a state or local authority, who conducts any audit or evaluation or any compliance activity in connection with federal legal requirements related to the programs. It could be any officer or university official that has a legitimate academic interest as part of his/her professional-administrative responsibilities, academic supervision, research, or support under the duties he/she carries.
  10. </p><p>
  11. The Division of Institutional Research and Assessment (DIIA for its Spanish acronym) during the process of receiving, analyzing, and disseminating information contained in learning assessment reports generated by each faculty uses reasonable methods like the constant monitoring of the online platform, controlled access to the program, among other measures, to ensure that it keeps the identity of the student protected.
  12. </p><p>
  13. Your login to this platform and the reading of the information related to the management of the student’s file, exposed above, implies that:
  14. </p><ul>
  15. <li> you agree that the data located on and extracted from the platform is for educational purposes
  16. <li> you act within the framework of its role as coordinator of the learning assessment and/or professor and
  17. <li> you are committed to safeguarding the principle of privacy and confidentiality of the student.
  18. </ul>
  19. {{ Form::open(['action' => 'AgreementController@agree', 'class' => 'form-horizontal']) }}
  20. <div class="form-group">
  21. <div class="form-group">
  22. <div class="col-md-6">
  23. {{ Form::submit('Do not Agree', ['class' => 'btn btn-lg btn-primary pull-right','name'=>"submitbutton"]) }}
  24. </div>
  25. <div class="col-md-6">
  26. {{ Form::submit('Agree', ['class' => 'btn btn-lg btn-primary pull-left','name'=>"submitbutton"]) }}
  27. </div>
  28. </div>
  29. {{ Form::close() }}
  30. </div>
  31. </div>
  32. @stop