-
Notifications
You must be signed in to change notification settings - Fork 18
/
verify_pass.php
28 lines (28 loc) · 1.27 KB
/
verify_pass.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
<?php
include('includes/header.php');
include('includes/navbar.php');
include('functions/userFunctions.php');
?>
<link rel="stylesheet" href="assets/css/profile.css">
<section class="p-5 p-md-5 text-sm-start mt-4">
<div class="Register mt-4 p-5">
<div class="heading">Password Verification</div>
<form class="regform" action="functions/updateprofile.php" method="POST">
<div class="input-box row-md-4 mb-3">
<p>We've sent you a verification code through your email.</p>
</div>
<div class="input-box row-md-4 mb-3 text-center">
<label for="type" class="form-label">Verification Code</label>
<div class="input-box row-md-4 mb-3">
<input type="text" name="code" placeholder="Enter verification code">
</div>
</div>
<div class="input-box row-md-4 mb-3">
<button type="submit" id="submitbtn" name="passcodeBtn" class="button-text">Submit</button>
</div>
</form>
</div>
</div>
</section>
<!--------------- FOOTER --------------->
<?php include('includes/footer.php');?>