Files
gtsit/app/Views/inquiries/lookup.php
2026-08-10 21:19:10 +09:00

2 lines
864 B
PHP

<section class="page-section"><div class="container narrow"><header class="page-heading"><span>INQUIRY</span><h1>문의 접수 확인</h1><p>접수번호와 작성 입력한 숫자 4자리 조회 PIN을 입력해 주세요.</p></header><form class="lookup-form" method="post" action="/inquiry/lookup"><?= csrf_field() ?><?php if ($error): ?><p class="form-errors" role="alert"><?= e($error) ?></p><?php endif; ?><label>접수번호<input name="ticket" value="<?= e($ticket) ?>" required maxlength="32" autocomplete="off" placeholder="GTS-20260804-ABC123"></label><label>조회 PIN<input type="password" name="password" required minlength="4" maxlength="4" inputmode="numeric" pattern="[0-9]{4}" autocomplete="current-password" data-pin-input></label><button class="button button-primary button-full" type="submit">문의 확인</button></form></div></section>