2020-10-29 06:20:03 +08:00
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
|
<div class="card-body">
|
2020-10-30 03:18:51 +08:00
|
|
|
<?php if($front != 'Success') { ?>
|
2020-10-29 06:20:03 +08:00
|
|
|
<div class="alert alert-danger" role="alert">
|
2020-10-30 03:18:51 +08:00
|
|
|
<?php echo $front; ?>
|
2020-10-29 06:20:03 +08:00
|
|
|
</div>
|
|
|
|
|
<?php } else { ?>
|
|
|
|
|
<div class="alert alert-success" role="alert">
|
2020-10-30 03:18:51 +08:00
|
|
|
Front QSL Card image has been uploaded!
|
|
|
|
|
</div>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
|
|
<?php if($back != 'Success') { ?>
|
|
|
|
|
<div class="alert alert-danger" role="alert">
|
|
|
|
|
<?php echo $back; ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?php } else { ?>
|
|
|
|
|
<div class="alert alert-success" role="alert">
|
|
|
|
|
Back QSL Card image has been uploaded!
|
|
|
|
|
</div>
|
2020-10-29 06:20:03 +08:00
|
|
|
<?php } ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|