Files
IPA/ipa-agent/pages/otp.php
diptimhabadi351 1cf6f290de IPA
2024-06-18 13:31:13 +05:30

43 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php include('../components/header.php') ?>
<seciton class="form_sec">
<div class="container">
<a href="sign-up.php" class="back_btn">
<img loading="lazy" src="../assets/images/back_btn.svg" alt="back_btn">
</a>
<div class="row">
<div class="col-md-6">
<img loading="lazy" src="../assets/images/login_img.webp" alt="login_img">
</div>
<div class="col-md-6">
<form>
<h2 class="h2_head">OTP</h2>
<p class="otp_para">
OTP Has been sent to the email address
<a href="">
mihirs@gmail.com
<img loading="lazy" src="../assets/images/edit_icon.svg" alt="edit_icon">
</a>
</p>
<div class="otp_main" id="otp_main">
<label for="" class="form-label">Enter OTP</label>
<div class="otp_input">
<input type="text" oninput='digitValidate(this)' onkeyup='tabChange(1)' maxlength=1>
<input type="text" oninput='digitValidate(this)' onkeyup='tabChange(2)' maxlength=1>
<input type="text" oninput='digitValidate(this)' onkeyup='tabChange(3)' maxlength=1>
<input type="text" oninput='digitValidate(this)' onkeyup='tabChange(4)' maxlength=1>
</div>
</div>
<a href="otp.php" class="login_btn">Verify OTP</a>
<p class="regis">Didnt receive any code? <a href="">Resend</a></p>
</form>
</div>
</div>
</div>
</seciton>
<?php include('../components/footer-link.php') ?>
<?php include('../components/footer.php') ?>