Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/imyrqtmy/public_html/localapp/vendor/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); $se = $_SESSION["id"]; if (!isset($_SESSION['id'])) { header("Location: login.php"); } include("inc/config.php");; ?> <!DOCTYPE html> <html lang="en"> <?php require "inc/head.php"; ?> <body> <!-- header--> <?php require "inc/header.php"; ?> <!-- End Main-content Top bar--> <!-- main-content--> <div class="wrapper"> <?php require "inc/sidebar.php"; ?> <div id="content"> <div class="row mb-4"> <div class="col-12 col-sm-12"> <div class="row"> <div class="col-12 col-md-12 mb-4"> <div class="card redial-border-light redial-shadow"> <div class="card-body" style="overflow: visible;"> <!-- <h6 class="header-title pl-3 redial-relative">Advanced Select</h6> --> <div class="card redial-border-light redial-shadow mb-4"> <div class="card-body"> <h6 class="header-title pl-3 redial-relative">Employee Form</h6> <form action="add_emp.php" method="post" enctype="multipart/form-data"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label class="redial-font-weight-600">Employee Name</label> <input type="text" name="emp_name" class="form-control" placeholder="Enter Employee Name" /> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="redial-font-weight-600">Employee Email</label> <input type="text" name="email" class="form-control" placeholder="Employee Email" /> </div> </div> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label class="redial-font-weight-600">Employee Phone</label> <input type="text" name="phone" class="form-control" placeholder="Enter Employee Phone" /> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="redial-font-weight-600">Employee Hour Rate</label> <input type="text" name="erh" class="form-control" placeholder="Employee Hour Rate" /> </div> </div> </div> <div class="form-group"> <label class="redial-font-weight-600 d-block">File Input</label> <input type="file" name="photo" /> </div> <div class="redial-divider my-4"></div> <button type="submit" name="add_emp" class="btn btn-primary btn-xs">Submit</button> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- End main-content--> <!-- Top To Bottom--> <a href="#" class="scrollup text-center redial-bg-primary redial-rounded-circle-50"> <h4 class="text-white mb-0"><i class="icofont icofont-long-arrow-up"></i></h4> </a> <!-- End Top To Bottom--> <!-- Chat--> <!-- End Chat--> <!-- jQuery --> <script src="dist/js/plugins.min.js"></script> <script src="dist/js/common.js"></script> </body> </html>