-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerify.php
29 lines (23 loc) · 834 Bytes
/
Verify.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php include "./partials/header.php"?>
<div class="container">
<h1>Welcome To Verification Module</h1>
<div class="forms">
<form action="" autocomplete="off" method="post">
<p>We have Emailed you an <strong>OTP</strong> to your Emailed</p>
<div class="form-groups">
<p>Enter OTP :</p>
<div class="inputs mail">
<input
type="text"
placeholder="Enter OTP "
name="otp"
id=""
/>
</div>
</div>
<p>Didn't Receive The OTP ? <a href="send">Resend OTP</a></p>
<input type="submit" name="verify" value="Verify">
</form>
</div>
</div>
<?php include "./partials/footer.php"?>