diff options
author | Marvin Borner | 2020-10-30 20:55:21 +0100 |
---|---|---|
committer | Marvin Borner | 2020-10-30 20:55:21 +0100 |
commit | c4431482a0aa209e0091b759e4977f2398a20fdc (patch) | |
tree | 2b6d6ad4b1a5d3bcf67bb2a105435afb6c51a754 /quotes | |
parent | 823947e52bb9b2d1f2df413e837dd95b16d0b1d2 (diff) |
Added maxlength
There were some exceptions in the console caused by too long texts..
Diffstat (limited to 'quotes')
-rw-r--r-- | quotes/public/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quotes/public/index.html b/quotes/public/index.html index ae95468..7a027d3 100644 --- a/quotes/public/index.html +++ b/quotes/public/index.html @@ -23,10 +23,10 @@ <form class="pure-form pure-form-stacked" action="api/add" method="post"> <fieldset> <legend>Zitate</legend> - <label for="author">Autor</label> + <label for="author">Autor (die Person, die zitiert wird)</label> <select name="author" id="author" required></select> - <label for="quote">Zitat</label> - <input name="quote" type="text" id="quote" placeholder="Zitat" required /> + <label for="quote">Zitat (max. 255 Zeichen)</label> + <input name="quote" type="text" id="quote" placeholder="Zitat" maxlength="255" required /> <button type="submit" class="pure-button pure-button-primary">Hinzufügen</button> </fieldset> </form> |