dashboard.blade.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @extends('supervisor.layouts.master')
  2. @section('content')
  3. <div class="card p-2 rounded border-0" style="background-color: #ffffff; color: #141639c4; height: 80vh;">
  4. <div class="col-md-12">
  5. <div class="row p-2">
  6. <h6 style="font-weight:bold !important;">3 Ways you can receive proposals from Doctoral candidates : </h6>
  7. <div class="col-md-4 mt-3 ms-3 method-box">
  8. <h6 class="method"> Option 1:</h6>
  9. <p style="font-size: 13px;"> You can give your ARN to the student and request them to submit their proposal using your reference.</p>
  10. </div>
  11. <div class="col-md-4 mt-3 ms-3 method-box">
  12. <h6 class="method"> Option 2:</h6>
  13. <p style="font-size: 13px;">You can log in to your account, include the student's name and email address in Q Apply, and send them an invitation. This way, their application will be automatically tagged with your reference.</p>
  14. </div>
  15. <div class="col-md-4 mt-3 ms-3 method-box">
  16. <h6 class="method"> Option 3:</h6>
  17. <p style="font-size: 13px; margin-bottom: 0px;">You can share the Q Apply link with the student and ask them to fill out the form using their name and email. An invitation email will be sent to them, and then they can proceed with method 2.</p>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="sidebar-footer" style="display: block;bottom: 0px !important; margin-left: -17px; margin-right: -17px;">
  23. <div class="sidebar-menu" style="padding: 0 !important;">
  24. <ul class="nav nav-pills nav-justified flex-column mb-0" id="">
  25. <li class="nav-item" style="margin-top: 35px; margin-bottom: -16px;">
  26. <div class="nav-link" style="background-color: #141639c4; border-radius: 0px !important;">
  27. <div class="text-start py-1 px-2">
  28. <p class="mb-0" style="text-align: center; color:#ffffff; margin-left: -2px; padding: 5px;">Copyright © <script>document.write(new Date().getFullYear())</script>
  29. Research Admission</p>
  30. </div>
  31. </div><!--end nav link-->
  32. </li><!--end nav item-->
  33. </ul><!--end nav pills-->
  34. </div>
  35. </div>
  36. @endsection
  37. @push('js')
  38. <script>
  39. $(function(){
  40. // $(".start_date").flatpickr({
  41. // dateFormat: "M y",
  42. // });
  43. // var clipboard = new ClipboardJS('.copy');
  44. // clipboard.on('success', function(e){
  45. // //pop_up_msg('Successfully copy this link.');
  46. // new Noty({
  47. // theme:'sunset',
  48. // text: 'Successfully copy this link',
  49. // type: 'success',
  50. // timeout:1500
  51. // }).show();
  52. // });
  53. // $('.teacher_is_available').on('click', function(){
  54. // var self =$(this);
  55. // var checked =self.prop("checked");
  56. // var form_data={
  57. // _token :"{{csrf_token()}}",
  58. // 'checked':checked,
  59. // }
  60. // swal({
  61. // title: "Are you sure you want to change status?",
  62. // text: "Please check before submitting!",
  63. // type: "warning",
  64. // showCancelButton: true,
  65. // confirmButtonClass: "btn-danger",
  66. // cancelButtonClass: "btn-info",
  67. // confirmButtonText: "Yes",
  68. // cancelButtonText: "No",
  69. // closeOnConfirm: true,
  70. // closeOnCancel: true
  71. // }, function(isConfirm){
  72. // if(isConfirm){
  73. // $.post("{{ route('ajax-post', ['name'=>'teacher_is_available']) }}", form_data, function(res){
  74. // pop_up_msg(res.msg);
  75. // window.location.reload();
  76. // }).fail(function(err){
  77. // pop_up_msg(err_msg(err), 'error');
  78. // });
  79. // }
  80. // });
  81. // });
  82. // });
  83. </script>
  84. @endpush