38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||
|
xmlns:th="http://www.thymeleaf.org"
|
||
|
layout:decorate="~{layouts/blank-layout}">
|
||
|
<title th:text="${pageTitle}">Collect MR</title>
|
||
|
</head>
|
||
|
<div layout:fragment="page_subtitle">
|
||
|
<h1 class="title mb-1" th:text="${pageTitle}"></h1>
|
||
|
<h3 class="mt-0" th:text="#{Search Worker}"></h3>
|
||
|
</div>
|
||
|
<body layout:fragment="page_content" id="page_expat">
|
||
|
|
||
|
<form id="mcWorkerFrom" name="mcWorkerFrom" th:action="@{''}"
|
||
|
autocomplete="off" th:method="POST" enctype="multipart/form-data"
|
||
|
th:object="${mcWorkerFrom}">
|
||
|
<div class="container">
|
||
|
<div class="card">
|
||
|
<div class="card-body">
|
||
|
<div class="row">
|
||
|
<div class="col-sm-8">
|
||
|
<div class="form-group">
|
||
|
<label for="passportNo" class="required bmd-label-floating" th:text="#{'Worker Reference No.'}" ></label>
|
||
|
<input type="text" class="form-control" id="refNo" name="wrkrRegNo" required="required" />
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-sm-4 align-self-center">
|
||
|
<button type="submit" class="btn btn-primary">Search</button>
|
||
|
<button type="button" class="btn btn-primary" onclick="scanQRCode()">Scan QR Code</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|