- Moved all V2 controllers (Lab, Requests, Samples, Users) to App\Controllers - Removed deprecated role controllers (Admin, Doctor, Analyst, CustomerService) - Simplified routes by removing /v2 prefix - Added AGENTS.md with project conventions and TODO.md with task tracking - Updated README.md with RBAC documentation - Fixed hardcoded dates, status color mappings, and duplicate database calls
14 lines
745 B
PHP
14 lines
745 B
PHP
<dialog class="modal" :open="isDialogValOpen">
|
|
<template x-if="valAccessnumber">
|
|
<div class="modal-box w-2/3 max-w-5xl">
|
|
<p class='text-right mx-3 mb-2'>
|
|
<button class="btn btn-sm btn-neutral" @click="closeValDialog()">Cancel</button>
|
|
<button id="validate-btn" x-ref="validateBtn" class="btn btn-sm btn-success"
|
|
@click="validate(valAccessnumber, '<?=session('userid');?>')" :disabled="!isValidateEnabled">Validate</button>
|
|
</p>
|
|
<!-- <iframe id="result-iframe" src="http://glenlis/spooler_db/main_dev.php?acc=" width="750px" height="600px"></iframe> -->
|
|
<iframe id="result-iframe" x-ref="resultIframe" src="<?=base_url('dummypage');?>" width="750px" height="600px"></iframe>
|
|
</div>
|
|
</template>
|
|
</dialog>
|