���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/var/www/html/tien-dien/code/tiennuoc/ |
<?php $CORE->title_page = 'Tiền nước'; $code = isset($CORE->input['code']) ? $CORE->input['code'] : ''; if($code!=''){ include $code.'.php'; } include 'layout/'.$INFO['path_skin'].'/header.php'; ?> <ul class="nav nav-tabs"> <li class="nav-item"> <a class="nav-link <?php echo (isset($CORE->input['act']) and ($CORE->input['act']=='' or $CORE->input['act']=='home')) ? 'active' : ''; ?>" aria-current="page" href="/">Tiền điện</a> </li> <li class="nav-item"> <a class="nav-link <?php echo (isset($CORE->input['act']) and $CORE->input['act']=='tiennuoc') ? 'active' : ''; ?>" href="/?act=tiennuoc">Tiền nước</a> </li> </ul> <!-- HTML giao diện nhập số nước từng phòng và tổng tiền --> <div class="container mt-4"> <h5 class="text-center">Tính tiền nước theo phòng</h5> <p>Nhập số nước (m³) sử dụng của từng phòng và tổng tiền phải đóng.</p> <form id="formTinhTienNuoc"> <div id="inputContainerWater"> <div class="form-group mb-3"> <label for="nuoc_phong_1">Số nước Phòng 1 (m³):</label> <input type="number" class="form-control" id="nuoc_phong_1" name="so_nuoc_phong[]" required min="0"> <div class="result-nuoc mt-1 text-muted"> Tiền nước phòng: <span class="tien_nuoc_phong fw-bold">0</span> VNĐ </div> </div> </div> <div class="mb-3 mt-3 text-center text-info"> <label for="tong_tien_nuoc">Tổng tiền nước phải đóng (VNĐ):</label> <input type="number" class="form-control" id="tong_tien_nuoc" required min="0"> </div> <div class="mt-2"> <button type="button" class="btn btn-primary" id="addRoomWater"><i class="fas fa-plus"></i> Thêm phòng</button> <button type="button" class="btn btn-success" id="calculateWater"><i class="fad fa-poll-people"></i> Tính tiền nước</button> </div> </form> </div> <?php include 'layout/'.$INFO['path_skin'].'/footer.php'; ?>