Add maxlength to all inputs

Because the children broke things with it.
This commit is contained in:
Eli Ribble 2026-02-06 16:56:09 +00:00
parent d464a5fbd0
commit f6f54da305
No known key found for this signature in database
5 changed files with 11 additions and 2 deletions

View file

@ -205,6 +205,7 @@ document.addEventListener('DOMContentLoaded', function() {
<textarea
class="form-control"
id="comments"
maxlength="2048"
name="comments"
rows="4"
placeholder="Example: The house appears to be vacant. There is algae growth in the pool. I've noticed increased mosquito activity in the evenings."
@ -375,6 +376,7 @@ document.addEventListener('DOMContentLoaded', function() {
<textarea
class="form-control"
id="access-comments"
maxlength="1024"
name="access-comments"
rows="3"
placeholder="Example: The pool is in the backyard, which can be accessed through a side gate on the right side of the house."
@ -464,6 +466,7 @@ document.addEventListener('DOMContentLoaded', function() {
type="text"
class="form-control"
id="owner-name"
maxlength="100"
name="owner-name"
/>
</div>
@ -473,6 +476,7 @@ document.addEventListener('DOMContentLoaded', function() {
type="tel"
class="form-control"
id="owner-phone"
maxlength="50"
name="owner-phone"
/>
</div>
@ -482,6 +486,7 @@ document.addEventListener('DOMContentLoaded', function() {
type="email"
class="form-control"
id="owner-email"
maxlength="100"
name="owner-email"
/>
</div>