Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.189.194.36
<script type="text/javascript">
$("#frm_date").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: "dd/mm/yy",
});
$(function () {
$("#tabs").tabs();
});
$(function () {
$("#sub_tabs").tabs();
});
</script>
<style>
.btn {
background-color: #008cba;
border: none;
border-radius: 4px;
color: white;
padding: 6px 18px;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
font-size: 13px;
}
.text {
height: 24px;
width: 250px;
}
.select {
height: 29px;
width: 100%;
}
.border {
font-size: 12px;
border-left: 1px solid #c5dbec;
border-right: 1px solid #c5dbec;
border-top: 1px solid #c5dbec;
border-bottom: 1px solid #c5dbec;
text-align: center;
}
.borderleft {
font-size: 12px;
border-left: 1px solid #c5dbec;
border-right: 1px solid #c5dbec;
border-top: 1px solid #c5dbec;
border-bottom: 1px solid #c5dbec;
text-align: center;
}
.input {
height: 29px;
width: 80%;
}
</style>
<div id="tabs">
<ul>
<li><a href="#">Room Allotment QPwise </a></li>
</ul>
<div style="overflow: auto; padding: 1rem">
<table class="content-tbl" cellpadding="5" cellspacing="2" width="100%">
<tr>
<td style="width: 140px" align="right">Exam Date :</td>
<td>
<input
id="allot_date"
type="date"
value=""
placeholder="Date"
class="textInputEnabled"
style="width: 140px; height: 20px; text-align: center"
onblur="getRoomAllotmentdate()"
/>
</td>
</tr>
<tr>
<td style="width: 140px" align="right">Session:</td>
<td>
<select
type="text"
id="allot_session"
class="textInputEnabled"
style="width: 100%; height: 28px"
></select>
</td>
</tr>
<tr>
<td style="font-size: 13px" align="right"></td>
<td>
<span
onclick="getRoomAllotmentData()"
style="
background-color: #008cba;
border: none;
color: white;
padding: 6px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
cursor: pointer;
border-radius: 3px;
"
>Submit</span
>
<span
onclick="roomAllotmentDataReset()"
style="
background-color: #008cba;
border: none;
color: white;
padding: 6px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
cursor: pointer;
border-radius: 3px;
"
>Reset</span
>
</td>
<!-- <td></td> -->
</tr>
</table>
<div id="roomAllotData"></div>
<div id="roomAllotQpData"></div>
</div>
</div>
|