File "change.php"
Full Path: /home/custbahd/tourismfraternity.com/admin/secure/modals/change.php
File size: 1.49 KB
MIME-type: text/plain
Charset: utf-8
<!-- Add New -->
<div class="modal fade" id="addnew" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">Change access code</h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<form class="row contact_form one" action="secure/edit/index.php" method="post" enctype="multipart/form-data">
<div class="col-lg-12 col-md-12 col-sm-12 col-12">
<div class="form-group">
<input type="text" class="form-control border-required" name="code" placeholder="Access Code" value="<?php echo $_SESSION['access']?>" required>
</div>
</div>
<div class="col-md-12 text-right">
<button type="button" class="btn theme_btn button_hover theme_btn_two" data-dismiss="modal">Cancel</button>
<button type="submit" value="submit" name="submit" class="btn theme_btn button_hover">Update</button>
</div>
</form>
</div>
</div>
</div>
</div>