Skip to content

Commit

Permalink
Remove max length from input
Browse files Browse the repository at this point in the history
Useless now
  • Loading branch information
root committed Aug 28, 2022
1 parent 69c41ce commit 6669215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function x() {
<h1>Deposit</h1>
Here, you can buy an Aztec barcode that you can scan to add money to your RevBank account.
<form method=post action=mollie.php>
Amount: <input id=custom type=text size=6 maxlength=21 style="width:6ch" name=amount pattern="(?:[0-9]+(?:[,.][0-9]{2})?)?(?:!\w+)?" title="42 or 42.00 or 42,00" onkeyup="return ch(this)" value="<?php echo($prefill); ?>"> <input type=submit value=ok><br>
Amount: <input id=custom type=text size=6 style="width:6ch" name=amount pattern="(?:[0-9]+(?:[,.][0-9]{2})?)?(?:!\w+)?" title="42 or 42.00 or 42,00" onkeyup="return ch(this)" value="<?php echo($prefill); ?>"> <input type=submit value=ok><br>
<div id=insufficient>Note: the minimum amount is <?php print($limit_min); ?> because of transaction fees that we can't (legally) pass on to you.</div>
<div id=exceeded>Note: the maximum amount is <?php print($limit_max); ?>.</div>
<p>
Expand Down

0 comments on commit 6669215

Please sign in to comment.