⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
mydry
/
application
/
views
/
View File Name :
view_service_detail.php
<!--Banner Start--> <div class="banner-slider" style="background-image: url(<?php echo base_url(); ?>public/uploads/<?php echo $setting['banner_service']; ?>)"> <div class="bg"></div> <div class="bannder-table"> <div class="banner-text"> <h1><?php echo $service['name']; ?></h1> </div> </div> </div> <!--Banner End--> <!--Single-Service Start--> <div class="single-service-area pt_60 pb_90"> <div class="container"> <div class="row"> <div class="col-lg-8"> <div class="service-info"> <div class="single-ser-carousel owl-carousel"> <div class="event-photo-item"> <img src="<?php echo base_url(); ?>public/uploads/<?php echo $service['photo']; ?>" alt="Service Photo"> </div> </div> <h2><?php echo $service['name']; ?></h2> <?php echo $service['description']; ?> </div> </div> <div class="col-lg-4"> <div class="service-sidebar"> <div class="service-sidebar-item headstyle"> <h4><?php echo $setting['sidebar_service_heading_service']; ?></h4> <ul> <?php foreach ($services as $row) { ?> <li><a href="<?php echo base_url(); ?>service/view/<?php echo $row['id']; ?>"><?php echo $row['name']; ?></a></li> <?php } ?> </ul> </div> <div class="service-sidebar-item headstyle"> <h4><?php echo $setting['sidebar_service_heading_quick_contact']; ?></h4> <?php if($this->session->flashdata('error')) { echo '<div class="error-class">'.$this->session->flashdata('error').'</div>'; } if($this->session->flashdata('success')) { echo '<div class="success-class">'.$this->session->flashdata('success').'</div>'; } ?> <?php echo form_open(base_url().'service/send_email',array('class' => '')); ?> <div class="form-row"> <input type="hidden" name="service" value="<?php echo $service['name']; ?>"> <div class="form-group"> <input type="text" class="form-control" placeholder="<?php echo NAME; ?>" name="name"> </div> <div class="form-group"> <input type="email" class="form-control" placeholder="<?php echo EMAIL_ADDRESS; ?>" name="email"> </div> <div class="form-group"> <input type="text" class="form-control" placeholder="<?php echo PHONE_NUMBER; ?>" name="phone"> </div> <div class="form-group"> <textarea class="form-control" placeholder="<?php echo MESSAGE; ?>" name="message"></textarea> </div> <div class="form-button"> <button type="submit" class="btn" name="form_service"><?php echo SUBMIT; ?></button> </div> </div> <?php echo form_close(); ?> </div> </div> </div> </div> </div> </div> <!--Single-Service End-->