-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.php
More file actions
28 lines (25 loc) · 1.25 KB
/
Copy pathcode.php
File metadata and controls
28 lines (25 loc) · 1.25 KB
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 require_once('includes/header.php'); ?>
<!--Main Page Content-->
<div class="container">
<div class="row">
<div class="col-lg-6 m-auto">
<div class="card mt-5">
<div class="card-title">
<h2 class="text-center pt-4"> Enter Code </h2>
<hr>
<?php validation_code(); ?>
</div>
<div class="card-body">
<form method="POST">
<input type="text" name="token_code" placeholder=" ######## " class="form-control mb-2">
</div>
<div class="card-footer">
<button class="btn btn-success " name="btn_active"> Activate </button>
<a href="login.php" class="btn btn-danger float-right"> Back </a>
</div>
</form>
</div>
</div>
</div>
</div>
<?php require_once('includes/footer.php'); ?>