| 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();
if(!isset($_SESSION['loggedin']) && @$_SESSION['loggedin'] != '1'):
header("Location:index.php");
endif;
?>
<!DOCTYPE html>
<html lang="en">
<?php include("includes/header.php"); ?>
<style>
.table a{
display:block;
text-decoration:none;
}
</style>
<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">Name Change</h3>
</br>
<div class="card mb-4">
<div class="card-header py-3">
<div class="row">
<div class="col-md-10">
<i class="fas fa-table me-1"></i>Change Client Name</div>
<div class="col-md-2">
<a href="dashboard.php" class="btn btn-primary" style="font-size:15px;" ><i class="fas fa-arrow-left"></i> Return to Dashboard</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-xs-6">
<div class="card-body">
<form method="post" id="login-form" class="login-form">
<div class="form-group row">
<label for="name" class="control-label col-sm-3">Enter New Name</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="fname" placeholder="Enter New Name">
</div>
</div></br>
<div class="form-group text-center">
<button type="submit" class="btn btn-secondary">Done</button>
<button type="submit" class="btn btn-secondary">Cancel</button>
</div>
</form>
</div>
</div>
</div>
</div>
</main>
<?php include("includes/footer.php"); ?>
</div>
</div>
<?php include("includes/footer_js.php"); ?>
</body>
</html>