This commit is contained in:
Devdatt Bhatt 2026-05-20 08:36:54 +00:00
parent 5edf91fd1f
commit 8b549657b5
1 changed files with 21 additions and 35 deletions

View File

@ -31,11 +31,9 @@ function getValue($data, $key)
<!-- Channel Details --> <!-- Channel Details -->
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">Channel Name:</span> <input type="text" name="channel_name" value="<?php echo htmlspecialchars(getValue($saved_data, 'channel_name')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="channel_name">Channel Name</label>
<input type="text" name="channel_name" value="<?php echo htmlspecialchars(getValue($saved_data, 'channel_name')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>
@ -48,58 +46,46 @@ function getValue($data, $key)
<!-- Contact Details --> <!-- Contact Details -->
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">Contact Details:</span> <input type="text" name="contact_details" value="<?php echo htmlspecialchars(getValue($saved_data, 'contact_details')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="contact_details">Contact Details</label>
<input type="text" name="contact_details" value="<?php echo htmlspecialchars(getValue($saved_data, 'contact_details')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>
<!-- Enforcement Officer Details --> <!-- Enforcement Officer Details -->
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">Enforcement Officer:</span> <input type="text" name="enforcement_officer" value="<?php echo htmlspecialchars(getValue($saved_data, 'enforcement_officer')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="enforcement_officer">Enforcement Officer</label>
<input type="text" name="enforcement_officer" value="<?php echo htmlspecialchars(getValue($saved_data, 'enforcement_officer')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">EO Contact Details:</span> <input type="text" name="eo_contact_details" value="<?php echo htmlspecialchars(getValue($saved_data, 'eo_contact_details')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="eo_contact_details">EO Contact Details</label>
<input type="text" name="eo_contact_details" value="<?php echo htmlspecialchars(getValue($saved_data, 'eo_contact_details')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>
<!-- Company Details --> <!-- Company Details -->
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">Company Name:</span> <input type="text" name="company_name" value="<?php echo htmlspecialchars(getValue($saved_data, 'company_name')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="company_name">Company Name</label>
<input type="text" name="company_name" value="<?php echo htmlspecialchars(getValue($saved_data, 'company_name')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">CIN Number:</span> <input type="text" name="cin_number" value="<?php echo htmlspecialchars(getValue($saved_data, 'cin_number')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="cin_number">CIN Number</label>
<input type="text" name="cin_number" value="<?php echo htmlspecialchars(getValue($saved_data, 'cin_number')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>
<div class="card wide"> <div class="card wide">
<div class="dropdown-container"> <div class="input-group">
<span class="dropdown-label">GSTIN Number:</span> <input type="text" name="gstin_number" value="<?php echo htmlspecialchars(getValue($saved_data, 'gstin_number')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
<div class="dropdown"> <label for="gstin_number">GSTIN Number</label>
<input type="text" name="gstin_number" value="<?php echo htmlspecialchars(getValue($saved_data, 'gstin_number')); ?>" style="width: 100%; background: transparent; border: none; color: white; outline: none;">
</div>
</div> </div>
</div> </div>