| Server IP : 74.208.236.18 / Your IP : 216.73.216.45 Web Server : Apache System : Linux infong654 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u39365822 ( 135825) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/7/d147067425/htdocs/ |
Upload File : |
<?php
session_start();
include("includes/db_con_get.php");
if(!isset($_SESSION['loggedin']) && @$_SESSION['loggedin'] != '1'):
header("Location:index.php");
endif;
?>
<!DOCTYPE html>
<html lang="en">
<?php include("includes/header.php"); ?>
<body class="sb-nav-fixed">
<?php include("includes/topnavbar.php"); ?>
<div id="layoutSidenav">
<?php include("includes/sidenavbar.php"); ?>
<div id="layoutSidenav_content">
<main>
<div class="container-fluid px-4">
<h3 class="mt-4">Add New Client</h3>
<div class="row">
<div class="col-xl-6 col-md-12">
</br>
<form action="#">
<div class="form-group row">
<label for="name" class="control-label col-sm-3">Client's Name</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="fname" placeholder="Client's name">
</div>
</div>
</br>
<div class="form-group row">
<label for="email" class="control-label col-sm-3">Client's Email</label>
<div class="col-sm-9">
<input type="email" class="form-control" id="email" placeholder="Client's email">
<span>Must be unique valid email</span>
</div>
</div>
</br>
<div class="form-group ">
<button type="submit" class="btn btn-secondary">Sent email invite to client</button>
<button type="submit" class="btn btn-secondary">ok</button>
</div>
</form>
</div>
</div>
</main>
<?php include("includes/footer.php"); ?>
</div>
</div>
<?php include("includes/footer_js.php"); ?>
</body>
</html>