0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
USER
/
include
/
[
Home
]
File: alert_message.php
<?php if(isset($_GET['message'])){ ?> <div class="alert alert-success alert-dismissible fade in" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span> </button> <strong><?php echo "Success " ?>!</strong> <?php echo $_GET['message'] ?> </div> <?php }else if(isset($_GET['error'])){ ?> <div class="alert alert-danger alert-dismissible fade in" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span> </button> <strong><?php echo "Failed " ?>!</strong> <?php echo $_GET['error'] ?> </div> <?php } ?>