cleanup form

This commit is contained in:
biglyderv 2024-11-26 21:14:32 -05:00
parent 73dafb8999
commit 34d322e0c0
3 changed files with 39 additions and 47 deletions

27
libs/form.php Normal file
View file

@ -0,0 +1,27 @@
<?php
function form($title, $form_message, $inputs) { ?>
<form class='form' enctype="multipart/form-data" method="POST">
<h1 class="form-heading">
<?php echo $title ?>
</h1>
<span class='form-message'>
<?php echo $form_message ?>
</span>
<?php
foreach ($inputs as $kv) { ?>
<span class='form-key'>
<?php echo $kv['key'] ?>
</span>
<<?php echo (($kv['type'] == 'textarea') ? 'textarea' : 'input') ?>
class='form-input'
type="<?php echo $kv['type'] ?>"
name="<?php echo $kv['name'] ?>"
value="<?php echo $kv['default'] ?>"
>
<?php }
?>
<input class='form-button' type="Submit" name="Submit">
</form>
<?php }
?>