myMedisys/tomcatfiles/mymedisys-frontend/WEB-INF/classes/templates/page/worker/arrival.html

64 lines
2.5 KiB
HTML
Raw Normal View History

2023-09-06 05:56:42 +05:30
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
layout:decorate="~{layouts/blank-layout}">
<head>
<title><th:block th:text="${pageTitle}" />Arrival Verification</title>
</head>
<body layout:fragment="page_content" id="page_arrival_verify">
<div class="wizard-container">
<div class="card card-wizard mt-0 active" data-color="blue"
id="wizardProfile">
<form th:action="@{'/arrival/verify'}" autocomplete="off"
id="arrival" th:method="post" enctype="multipart/form-data ">
<div class="card-header">
<h3 class="card-title">ARRIVAL VERIFICATION</h3>
<br />
</div>
<div class="wizard-navigation">
<ul class="nav nav-pills p-3">
<li class="nav-item"><a class="nav-link proj-flow active"
href="#passport" data-toggle="tab" role="tab">Passport</a></li>
<li class="nav-item"><a class="nav-link proj-flow"
href="#fingerprint" data-toggle="tab" role="tab">Fingerprint</a></li>
<li class="nav-item"><a class="nav-link proj-flow"
href="#face" data-toggle="tab" role="tab">Face</a></li>
</ul>
<div class="moving-tab"
style="width: 100%; transform: translate3d(-8px, 0px, 0px); transition: transform 0s ease 0s;">
Personal</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active" id="passport">
<th:block th:include="page/worker/arrival-passport" />
</div>
<div class="tab-pane" id="fingerprint">
<th:block th:include="page/worker/arrival-fingerprint" />
</div>
<div class="tab-pane" id="face">
<th:block th:include="page/worker/arrival-face" />
</div>
</div>
</div>
<div class="card-footer">
<div class="pb-3 text-right">
<div class="ml-auto button-group">
<a name="previous"
class="btn waves-effect waves-light btn-secondary disabled"
th:href="@{${'/resources/previousTab?previousTab='+previousTab + '&wrkrRegId=' + profile?.wrkrRegId + '&updateFlag=' + updateFlag}}">Previous</a>
<button type="submit" th:disabled="${worker == null}"
class="btn waves-effect waves-light btn-primary" name="next"
value="Verify and Continue">Verify and Continue</button>
<button type="submit" th:disabled="${worker == null}"
class="btn waves-effect waves-light btn-primary" name="next"
value="Verify and Continue" style="display: none;">Verify
and Continue</button>
</div>
</div>
</div>
</form>
</div>
</div>
</body>
</html>