| Current Path : /var/www/html/quest5/backend/views/site/ |
| Current File : /var/www/html/quest5/backend/views/site/application-view.php |
<?php
use yii\helpers\Html;
use yii\grid\GridView;
$this->title = Yii::t('app', 'Application View');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="wrapper wrapper-content">
<div class="ibox">
<div class="ibox-title"><h5>Application Details</h5></div>
<div class="ibox-content">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td style="text-align:right;width:20%;">Reference Number</td>
<td><b>QUEST/2025/000010</b></td>
</tr>
<tr>
<td style="text-align:right;">Apply Date</td>
<td><b>9 MAY 2025</b></td>
</tr>
<tr>
<td style="text-align:right;">Approval Status</td>
<td><b>WAITING FOR APPROVAL</b></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="ibox">
<div class="ibox-title"><h5>Company Information</h5></div>
<div class="ibox-content">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td style="text-align:right;width:20%;">Company Name</td>
<td><b>GLOWVIA BEAUTY</b></td>
</tr>
<tr>
<td style="text-align:right;">SSM Number</td>
<td><b>ABC1234</b></td>
</tr>
<tr>
<td style="text-align:right;">Address</td>
<td><b>NO 1/2, LORONG TIGA, TAMAN BUNGA RAYA 43000 KAJANG SELANGOR</b></td>
</tr>
<tr>
<td style="text-align:right;">Telephone Number</td>
<td><b>012-987456321</b></td>
</tr>
<tr>
<td style="text-align:right;">Email Address</td>
<td><b>test@abc.com</b></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="ibox">
<div class="ibox-title"><h5>Product Details</h5></div>
<div class="ibox-content">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td style="text-align:right;width:20%;">Product Type</td>
<td><b>COSMETICS</b></td>
</tr>
<tr>
<td style="text-align:right;">Product Name</td>
<td><b>KRIM WAJAH MUTIARALEMBUT</b></td>
</tr>
<tr>
<td style="text-align:right;">Product Description</td>
<td><b>Experience natural softness with MutiaraLembut Face Cream, specially formulated with pearl extract and premium moisturising ingredients to give your skin a smooth and radiant glow. This cream helps brighten skin tone, deeply hydrate, and protect against dullness and daily pollution.</b></td>
</tr>
<tr>
<td style="text-align:right;">Manufacturer Name</td>
<td><b>KILANG ABC</b></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="ibox">
<div class="ibox-title"><h5>Supporting Documents</h5></div>
<div class="ibox-content">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td style="text-align:right;width:20%;">Product Registration Certificate</td>
<td><a href="#">Click here to view document</a></td>
</tr>
<tr>
<td style="text-align:right;">Approval Letter</td>
<td><a href="#">Click here to view document</a></td>
</tr>
<tr>
<td style="text-align:right;">Production License</td>
<td><a href="#">Click here to view document</a></td>
</tr>
<tr>
<td style="text-align:right;">Attachment</td>
<td><a href="#">Click here to view document</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<a href="application-list" class="btn btn-primary">Approve</a>
<a href="application-list" class="btn btn-primary">Reject</a>
</div>