Israat Zarin 1 year ago
parent
commit
eb1193fc05

+ 6 - 6
resources/views/auth/login.blade.php

@@ -74,16 +74,16 @@
                 box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%) !important;
             }
             .btn1{
-                background-color: #141639c4 !important; 
+                background-color: #2c2266 !important; 
                 color:white !important; 
                 border-radius: 20px; 
                 box-shadow:none !important;
             }
             .btn1:hover{
                 background: #fff !important;
-                color: #141639c4 !important;
+                color: #2c2266 !important;
                 border-radius: 20px;
-                border: 1px solid #141639c4;
+                border: 1px solid #2c2266;
             }
             .tns-nav button {
                 background: #141639c4 !important;
@@ -92,7 +92,7 @@
                 background-color: #ffff !important; 
             }
             .bg-left{
-                background-color:#141639c4;
+                background-color: #2c2266;
                 border:none; 
                 padding:8.37rem;
             }
@@ -206,7 +206,7 @@
                                 <div class="col-12">
                                     <div class="card login-page border-0" style="z-index: 1">
                                         <div class="card-body p-0">
-                                            <h6 class="card-title text-start" style="color: #141639c4;">Please log-in to your account</h6>  
+                                            <h6 class="card-title text-start" style="color: black;">Please log-in to your account</h6>  
                                             <form method="POST" action="{{ route('student-login') }}"> 
                                                     @csrf
                                                     @if ($message = Session::get('error'))
@@ -263,7 +263,7 @@
                                                                 {{ __('Login') }}
                                                             </button>
 
-                                                            <p class="text-center mt-3"><span>New on our platform ? </span><a href="{{ url('register') }}" class="ps-2"><span>Create an account</span></a></p>
+                                                            <p class="text-center mt-5" style="font-weight: 600;"><span>New on our platform ? </span><a href="{{ url('register') }}" class="ps-2"><span>Create an account</span></a></p>
                                                         </div>
                                                     </div>
                                             </form>  

+ 15 - 14
resources/views/auth/register.blade.php

@@ -68,25 +68,25 @@
         box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%) !important;
     }
     .btn1{
-        background-color: #141639c4 !important; 
+        background-color: #2c2266 !important; 
         color:white !important; 
         border-radius: 20px; 
         box-shadow:none !important;
     }
     .btn1:hover{
         background: #fff !important;
-        color: #141639c4 !important;
+        color: #2c2266 !important;
         border-radius: 20px;
-        border: 1px solid #141639c4;
+        border: 1px solid #2c2266;
     }
-    .tns-nav button {
+    .tns-nav button { 
         background: #141639c4 !important;
     }
     .tns-nav button.tns-nav-active{
         background-color: #ffff !important; 
     }
     .bg-left{
-        background-color:#141639c4;
+        background-color: #2c2266;
         border:none; 
         padding:8.37rem;
     }
@@ -134,8 +134,9 @@
                 <div class="row g-0 position-relative">
                     <div class="col-lg-8 padding-less bg-left">
                         <div> 
-                            <h3 class="ps-4 mt-5 pt-4 head-line">Submit proposals with ease using our platform</h3>
-                            <h2 class="ps-4 sub-line1">Submitting your research proposal to potential supervisors is now just a matter of few clicks with our platform. It eliminates the need to spend countless hours searching and contacting supervisors individually. Our platform is designed with a user-friendly interface that enables anyone, regardless of their technical skills, to easily navigate and use it. Additionally, you can track the progress of your application in real-time, eliminating the need to continuously follow up with supervisors. This frees up your time to focus on your research, ensuring that you are on top of things throughout the application process.</h2>
+                            <h3 class="ps-4 mt-5 pt-4 head-line">Simplify doctoral proposal submission<br>Track progress in real-time</h3>
+                            <h2 class="mt-4 ps-4 sub-line1">Submitting your doctoral application proposals to potential supervisors is now just a matter of few clicks with our platform. It eliminates the need to spend countless hours searching and contacting supervisors individually.</h2>
+                            <h2 class="mt-4 ps-4 sub-line1">Our platform is designed with a user-friendly interface that enables anyone, regardless of their technical skills, to easily navigate and use it. Additionally, you can track the progress of your application in real-time, eliminating the need to continuously follow up with supervisors.</h2>
 
                         </div>
                     </div>   
@@ -153,7 +154,7 @@
                                                         </div>
                                                     @endif
                                                 </div>
-                                                    <h1 class="mb-4 pb-1 mt-2" style="color: #141639c4; font-size:48px !important;">Register, To Start</h1>
+                                                    <h1 class="mb-4 pb-1 mt-2" style="color: #2c2266; font-size:48px !important;">Register, To Start</h1>
                                                     <form method="POST" action="{{ route('student-register') }}">
                                                     @csrf
                                                     <input type="hidden" value="1" name="user_type">
@@ -180,7 +181,7 @@
 
                                                     <div class="row mb-4">
                                                         <div class="col-md-12">
-                                                            <input type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required placeholder="Email">
+                                                            <input type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required placeholder="Write Your Email Address">
 
                                                             @error('email')
                                                                 <span class="invalid-feedback" role="alert">
@@ -193,7 +194,7 @@
                                                     <div class="row mb-4">
                                                         <div class="col-md-12">
                                                                 <select class="form-control" name="nationality">
-                                                                    <option>Nationality</option>
+                                                                    <option>Select Your Nationality</option>
                                                                     @foreach($countries as $item)
                                                                         <option value="{{$item->id}}">{{$item->name}}</option>
                                                                     @endforeach
@@ -204,7 +205,7 @@
                                                     <div class="row mb-3">
                                                         <div class="col-md-12 back">
                                                             <div>
-                                                                <input name="dob" type="text" class="form-control start" id="dob" placeholder="Select your Date of Birth" autocomplete="off">
+                                                                <input name="dob" type="text" class="form-control start" id="dob" placeholder="Select Your Date of Birth" autocomplete="off">
                                                             </div>
                                                         </div>
                                                     </div>
@@ -226,7 +227,7 @@
 
                                                     <div class="row mb-4">
                                                         <div class="col-md-12">
-                                                            <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password" placeholder="Set a password">
+                                                            <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password" placeholder="Set a Password">
 
                                                             @error('password')
                                                                 <span class="invalid-feedback" role="alert">
@@ -238,7 +239,7 @@
 
                                                     <div class="row mb-4">
                                                         <div class="col-md-12">
-                                                            <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password" placeholder="Confirm password">
+                                                            <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password" placeholder="Confirm Password">
                                                         </div>
                                                     </div>
 
@@ -249,7 +250,7 @@
                                                             </button>
                                                         </div>
                                                     </div>
-                                                    <p class="text-center mt-2 pb-4"><span> Already registered ?</span><a href="{{ url('login') }}" class="ps-2"><span>Login Here</span></a></p>                       
+                                                    <p class="text-center mt-2 pb-4" style="font-weight: 600;"><span> Already registered ?</span><a href="{{ url('login') }}" class="ps-2"><span>Login Here</span></a></p>                       
                                                 </form>
                                                 </div>
                                             </div>

+ 1 - 1
resources/views/home.blade.php

@@ -130,7 +130,7 @@
                                                                 @endif
                                                                 <div class="alert" style="background-color:white; padding: 3px 7px; margin-bottom: 0px;">
                                                                 <strong class="ml-2">{{ cn($row,'teacher_details.first_name','')}} {{ cn($row,'teacher_details.last_name','')}}</strong><br>
-                                                                <span class="ml-2">{{cn($row,'teacher_details.designation','')}}</span>
+                                                                <span class="ml-2" style="font-weight: 300;">{{cn($row,'teacher_details.designation','')}}</span>
                                                                 </div>
                                                             </div>
                                                         

+ 23 - 24
resources/views/landing.blade.php

@@ -64,14 +64,13 @@
        <style>
 
             body {
-                font-family: 'Poppins', sans-serif;
-                font-family: 'Poppins', sans-serif;
+                font-family: 'Quicksand', sans-serif;
             }
             h1, h2, h3, h4, h6 {
-                font-family: 'Poppins', sans-serif;
+                font-family: 'Quicksand', sans-serif;
             }
             h5{
-                font-family: 'Montserrat Alternates', sans-serif !important;
+                font-family: 'Quicksand', sans-serif;
             }
             .bg-half-170 {
             padding:0px;
@@ -147,7 +146,7 @@
                 color: #ffffff !important;
             }
             .master-link.secondary {
-                padding: 12px;
+                padding: 20px;
                 color: #fff;
                 background-color: rgba(235,232,227,.1);
                 clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.1em), calc(100% - 1.1em) 100%, 0 100%);
@@ -202,25 +201,25 @@
                 <div class="row g-0" style="justify-content: center;">
                     <div class="col-md-8 mt-5 pt-5 mb-5">
                         <div class="card-body mt-4 mb-5" style="padding: 0px; text-align: center !important;">
-                            <span style="line-height: 1.1; color: #ffbd59; font-size: 48px !important; font-weight: 500 !important; font-family: 'League Spartan', sans-serif !important;">Pre-screening a proposal</span>
+                            <span style="line-height: 1.1; color: #ffad00; font-size: 48px !important; font-weight: 500 !important; font-family: 'League Spartan', sans-serif !important;">Pre-screening a Proposal</span>
                             <p style="color:white; font-weight: bolder !important; font-size: 28px ">can optimize the application process for supervisors & candidates</p>                             
                         </div>
-                        <div style="border-bottom: 2px solid #ffbd59; width: 12%; margin-left: 30rem;"></div>
-                            <p class="mt-5 text-center" style="color:white; font-weight: bolder !important; font-size: 28px ">Introducing Research Admission Platform for Supervsiors -
+                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
+                            <p class="mt-5 text-center" style="color:white; font-weight: bolder !important; font-size: 20px ">Introducing Research Admission Platform for Supervsiors -
                                 <br>a revolutionary solution designed to simplify the proposal <br>submission and review process</p> 
-                            <p class="mt-5 mb-4 text-center"><span class="master-link secondary open_modal_page hand" data-title="Register Your Interest" data-url="{{route('modal-get',['name'=>'landing_ragister_form'])}}"><strong style="font-weight: bolder !important; cursor:pointer;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </span></p>    
+                            <p class="mt-5 mb-4 text-center"><span class="master-link secondary open_modal_page hand" data-title="Register Your Interest" data-url="{{route('modal-get',['name'=>'landing_ragister_form'])}}"><strong style="font-weight: bolder !important; cursor:pointer; font-size: 17px;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </span></p>    
                         </div>
                     </div>
                    
-                    <div class="container-fluid mt-5" style="background-color: #eee;">
+                    <div class="container-fluid mt-5" style="background-color: white;">
                         <div class="row g-0 mt-5 mb-5" style="justify-content: center;">
                             <div class="container">
                                 <div class="col-md-12">
                                     <div class="row">
                                         <div class="col-md-6">
-                                            <p class="mt-5 pt-3 mb-3 text-left" style="color: #191e38; font-weight: bolder !important; font-size: 28px ">Discover the hassle-free solution to manage proposals from your <br>doctoral applicants</p> 
-                                            <div style="border-bottom: 2px solid #191e38; width: 25%;"></div>
-                                            <p class="mt-4 mb-5 pb-3 text-left" style="color: #191e38; font-size: 19px;">As an educator and supervisor, it's clear that you receive a large volume of emails from doctoral candidates seeking your supervision for their research projects. The task of organizing and keeping track of all these emails can be quite daunting.</p>
+                                            <p class="mt-5 pt-3 mb-3 text-left" style="color: #191e38; font-weight: bolder !important; font-size: 38px;  font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Discover the hassle-free solution to manage proposals from your doctoral applicants</p> 
+                                            <div style="border-bottom: 2px solid #ffad00; width: 25%;"></div>
+                                            <p class="mt-4 mb-5 pb-3 text-left" style="color: #191e38; font-size: 20px;">As an educator and supervisor, it's clear that you receive a large volume of emails from doctoral candidates seeking your supervision for their research projects. The task of organizing and keeping track of all these emails can be quite daunting.</p>
                                         </div>
                                         <div class="col-md-5 mt-5 mb-5 ms-5 ps-4">
                                             <img src="web/images/01.jpg" class="rounded-circle">
@@ -237,8 +236,8 @@
                                 <div class="col-12 text-center">
                                     <div class="section-title mb-4 pb-2">
                                         <p class="mt-2" style="color:white; font-size: 20px; margin-bottom: 0px;">Working Processes</p>
-                                        <h1 class="mb-3" style="color: #ffbd59; font-size: 40px !important; font-weight: bolder !important;">HOW IT WORKS</h1>
-                                        <div style="border-bottom: 2px solid #ffbd59; width: 12%; margin-left: 30rem;"></div>
+                                        <h1 class="mb-3" style="color: #ffad00; font-size: 48px !important; font-weight: bolder !important; font-family: 'League Spartan', sans-serif !important;">How It Works</h1>
+                                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
                                     </div>
                                 </div><!--end col-->
                             </div><!--end row-->
@@ -293,14 +292,14 @@
                         </div>
                     </div>
 
-                    <div class="container-fluid mt-5 pt-2" style="background-color: #eee;">
+                    <div class="container-fluid mt-5 pt-2" style="background-color: white;">
                         <div class="row g-0 mt-5 mb-5" style="justify-content: center;">
                             <div class="container">
                                 <div class="row justify-content-center">
                                     <div class="col-12 text-center">
-                                        <p class="mt-2" style="color: #191e38; font-size: 20px; margin-bottom: 0px;">Users Review</p>
-                                        <h1 class="mb-3" style="color: #191e38; font-size: 40px !important; font-weight: bolder !important;">WHAT OUR USER SAYS</h1>
-                                        <div style="border-bottom: 2px solid #191e38; width: 12%; margin-left: 30rem;"></div>
+                                        <p class="mt-2" style="color: #191e38; font-size: 20px; margin-bottom: 0px; font-weight: 600;">Users Review</p>
+                                        <h1 class="mb-3" style="color: #191e38; font-size: 48px !important; font-weight: bolder !important; font-family: 'League Spartan', sans-serif !important;">What Our User Says</h1>
+                                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
                                     </div><!--end col-->
                                 </div><!--end row-->
                                 <div class="col-md-12 mb-5 pb-2">
@@ -360,14 +359,14 @@
                                 <div class="col-md-12 mb-5">
                                     <div class="section-title mb-4 pb-2 text-center">
                                         <p class="mt-2" style="color:white; font-size: 20px; margin-bottom: 0px;">Why this platform is</p>
-                                        <h1 class="mb-3" style="color: #ffbd59; font-size: 40px !important; font-weight: bolder !important;">ADVANTAGEOUS FOR YOU</h1>
-                                        <div style="border-bottom: 2px solid #ffbd59; width: 12%; margin-left: 30rem;"></div>
+                                        <h1 class="mb-3" style="color: #ffad00; font-size: 48px !important; font-weight: bolder !important; font-family: 'League Spartan', sans-serif !important;">Advantageous For You</h1>
+                                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
                                     </div>
                                     <div class="row">
                                         <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2" style="border-right: 2px solid #ffffff;">
                                             <div class="card-body">
                                                 <div class="mt-2">
-                                                    <h1 style="color: #ffbd59; font-size: 28px !important; text-align: left;">Supervision opportunities</h1>
+                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left;  font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Supervision <br>opportunities</h1>
                                                     <h5 class="text-left mt-4" style="color: white;">Join our community and connect with driven candidates ready to excel</h5>
                                                 </div>
                                             </div>
@@ -376,7 +375,7 @@
                                         <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2" style="border-right: 2px solid #ffffff;">
                                             <div class="card-body">
                                                 <div class="mt-2">
-                                                    <h1 style="color: #ffbd59; font-size: 28px !important; text-align: left;">Collaborate with Potential Co-author</h1>
+                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left; font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Collaborate with <br>Potential Co-author</h1>
                                                     <h5 class="text-left mt-4" style="color: white;">Expand your academic network and collaborate with potential co-authors in your field effortlessly with just a few clicks</h5>
                                                 </div>
                                             </div>
@@ -385,7 +384,7 @@
                                         <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
                                             <div class="card-body">
                                                 <div class="mt-2">
-                                                    <h1 style="color: #ffbd59; font-size: 28px !important; text-align: left;">Full Control More Visibility</h1>
+                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left; font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Full Control <br>More Visibility</h1>
                                                     <h5 class="text-left mt-4" style="color: white;">Update your research interests and toggle your availability status with ease, all in one platform</h5>
                                                 </div>
                                             </div>