86 lines
4.7 KiB
PHP
Executable File
86 lines
4.7 KiB
PHP
Executable File
<?php
|
|
require_once('fixed/config/go_con.php');
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en" dir="rtl">
|
|
<?php require_once('fixed/head/go.php'); ?>
|
|
|
|
<body class="rtl">
|
|
<style>
|
|
.header-title {
|
|
color: #086367 !important;
|
|
font-weight: bold !important;
|
|
}
|
|
</style>
|
|
<?php require_once('fixed/loader/go.php'); ?>
|
|
<!-- page-wrapper Start-->
|
|
<div class="page-wrapper" id="pageWrapper">
|
|
<?php require_once('fixed/header/go.php'); ?>
|
|
<!-- Page Body Start-->
|
|
<div class="page-body-wrapper">
|
|
<?php require_once('fixed/sidebar/go.php'); ?>
|
|
<div class="page-body">
|
|
<!-- Container-fluid starts-->
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body new-user order-list">
|
|
<div class="form-group row">
|
|
<div class="col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4">
|
|
<label for="" class="col-form-label text-right">نموذج الطباعة</label>
|
|
<select id="emp_name" style="font-family: system-ui;" class="form-control"
|
|
name="booking_car_type">
|
|
<option value="0" selected>المرجو الاختيار</option>
|
|
<option value="1" >فواتير</option>
|
|
<option value="2" >سندات</option>
|
|
<option value="3" >مرتجعات</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4">
|
|
<label for="" class="col-form-label text-right">نوع الخدمة</label>
|
|
<select id="theService" style="font-family: system-ui;"
|
|
class="form-control">
|
|
<option value="0" selected>المرجو الاختيار</option>
|
|
<option value="1" >التدليك</option>
|
|
<option value="2" >الحمام المغربي</option>
|
|
<option value="3" >البدكير</option>
|
|
|
|
</select>
|
|
</div>
|
|
<div class="col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4">
|
|
<label for="" class="col-form-label text-right">الموظف</label>
|
|
<select id="theService" style="font-family: system-ui;"
|
|
class="form-control">
|
|
<option value="0" >المرجو الاختيار</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-12 col-sm-12 col-md-6 col-lg-4 col-xl-4">
|
|
<label for="" class="col-form-label text-right">التاريخ</label>
|
|
<input class="form-control clickfun" type="text"
|
|
value="<?= $booking_day_date ?>" disabled>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="form-group row">
|
|
<div class="col-lg-12">
|
|
<div class="form-control"
|
|
style="background-color: #086367; color:white; text-align:center; cursor: pointer;"
|
|
id="add_booking">انشاء</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Container-fluid Ends-->
|
|
</div>
|
|
<?php require_once('fixed/footer/go.php'); ?>
|
|
</div>
|
|
</div>
|
|
<?php require_once('fixed/js/go.php'); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|