Interview module is refactored to use layouts and re-usable components along with domain components. Style remains identitical to previous design.
14 lines
700 B
PHP
14 lines
700 B
PHP
<x-modal id="sos-modal" title="Candidate Potential Cheating Alert" maxWidth="lg" onClose="stopSosAlarm">
|
|
<div id="sos-violation-list" class="bg-red-500/10 border border-red-500/30 rounded-lg p-3.5 text-xs text-red-400 mb-4 max-h-[180px] overflow-y-auto font-medium">
|
|
Violation details loading...
|
|
</div>
|
|
<div class="flex justify-end gap-2">
|
|
<x-button onclick="stopSosAlarm()" variant="secondary" size="md" icon="fa-solid fa-check">
|
|
Acknowledge Alert
|
|
</x-button>
|
|
<x-button onclick="disableSosAndStopAlarm()" variant="danger" size="md" icon="fa-solid fa-bell-slash">
|
|
Acknowledge & Disable SOS
|
|
</x-button>
|
|
</div>
|
|
</x-modal>
|