user walls

This commit is contained in:
biglyderv 2024-12-06 08:26:03 -05:00
parent 4734ee5d6d
commit 8abdde750c
5 changed files with 101 additions and 75 deletions

View file

@ -17,6 +17,7 @@
class='form-input'
type="<?php echo $kv['type'] ?>"
name="<?php echo $kv['name'] ?>"
<?php echo ($kv['type'] == 'hidden') ? 'hidden' : ''?>
value="<?php echo ($kv['type'] == 'textarea') ? '' : $kv['default'] ?>"
><?php echo (($kv['type'] == 'textarea') ? $kv['default'] . '</textarea>' : '') ?>
<?php }
@ -24,4 +25,4 @@
<input class='form-button' type="Submit" name="Submit">
</form>
<?php }
?>
?>