Skip to content

Instantly share code, notes, and snippets.

@jaikt
Created November 12, 2021 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaikt/68aac0a021cf9986bbca6abe2f854085 to your computer and use it in GitHub Desktop.
Save jaikt/68aac0a021cf9986bbca6abe2f854085 to your computer and use it in GitHub Desktop.
mahtab-mofhy-lit
<div class="container-fluid">
<div class="card py-0">
<div class="d-flex justify-content-between align-items-center pt-15">
<h5 class="m-0">Hosting Accounts</h5>
<a href="<?php echo $AreaInfo['area_url'];?>newaccount.php" class="btn text-white btn-success btn-sm">New Account</a>
</div>
<hr>
<div class="table-responsive">
<table class="table table-stripped">
<thead>
<th>ID</th>
<th>Username</th>
<th>Domain</th>
<th>Deploy Date</th>
<th>Status</th>
<th>Action</th>
</thead>
<tbody>
<?php
$sql = mysqli_query($connect,"SELECT * FROM `hosting_account` WHERE `account_for`='".$ClientInfo['hosting_client_key']."' ORDER BY `account_id` DESC");
$Rows = mysqli_num_rows($sql);
if($Rows>0){
while($AccountInfo = mysqli_fetch_assoc($sql)){
?>
<tr>
<td>#<?php $Count = $Count ?? 1;echo $Count;$Count += 1;?></td>
<td><?php echo $AccountInfo['account_username'];?></td>
<td><?php $client = Client::create();
$request = $client->getUserDomains(['username' => $AccountInfo['account_username']]);
$response = $request->send();
$res = $response->getDomains();
foreach($res as $domain){
echo $domain."\n";
}?></td>
<td><?php echo $AccountInfo['account_date'];?></td>
<td><?php
if($AccountInfo['account_status']=='0'){
echo '<span class="badge bg-secondary badge-pill">Inactive</span>';
} elseif($AccountInfo['account_status']=='1'){
echo '<span class="badge bg-success badge-pill">Active</span>';
} elseif($AccountInfo['account_status']=='2'){
echo '<span class="badge bg-danger badge-pill">Suspended</span>';
}
?></td>
<td><a href="<?php echo $AreaInfo['area_url'];?>viewaccount.php?account_id=<?php echo $AccountInfo['account_username'];?>" class="btn btn-sm btn-secondary btn-rounded">Manage</a></td>
</tr>
<?php
}
} else {
?>
<tr>
<td colspan="6" class="text-center">Oops! The Database Has No Records. </td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<?php if($Rows>2){
echo('<div class="alert alert-secondary"><i class="fa fa-info-circle mr-5"></i>You are about to reach your account limit please upgrade to premium in order to get more hosting space and resources.</div>');
};?>
<p class="pb-10"><?php echo $Rows;?>/3 Accounts</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment