summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/view/formctrl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/formctrl.php b/app/view/formctrl.php
index 3683eb4..b8643b0 100644
--- a/app/view/formctrl.php
+++ b/app/view/formctrl.php
@@ -25,7 +25,7 @@ namespace formctrl;
<div class="form-group">
<label><?=$label?></label>
- <input type="text" name="input[<?=$name?>]" value="<?=$value?>" placeholder="<?=$placeholder?>" class="form-control" <?=($required ? "required" : "")?> <?=($disabled ? "disabled" : "")?> />
+ <input type="text" name="input[<?=$name?>]" value="<?=$value?>" placeholder="<?=$placeholder?>" class="form-control" <?=($required ? "required" : "")?> <?=($disabled ? "disabled" : "")?> maxlength="64" />
</div>
<?php } ?>