21 lines
482 B
Smarty
21 lines
482 B
Smarty
<div class="main-container flex-container-main-form">
|
|
<?php if(get_data('message')):?>
|
|
<div id="info-box" class="ui-corner-all auto-highlight auto-hide">
|
|
<?=get_data('message')?>
|
|
</div>
|
|
<?php endif?>
|
|
|
|
<h2><?=get_data('formTitle')?></h2>
|
|
<div class="form-content">
|
|
<?=get_data('myForm')?>
|
|
</div>
|
|
|
|
<script>
|
|
$(function(){
|
|
<?php if(get_data('reload')):?>
|
|
window.location.reload();
|
|
<?php endif?>
|
|
});
|
|
</script>
|
|
</div>
|