In HTML we have it limited to 80: <input type="text" name="basketname" id="basketname" size="40" maxlength="80" value="" required="required" class="focus required valid" aria-invalid="false"> but in database aqbasket.basketname is limited to 50 for some reason. This results in the user being able to input more characters and the last 30 characters will then be SILENTLY TRUNCATED. The max length of the value in database should be expanded to at least 80 to match up the HTML (potentially to even more?).