summaryrefslogtreecommitdiff
path: root/views/partials/eventGroupForm.handlebars
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2024-05-26 21:07:39 +0100
committerRaphael Kabo <raphaelkabo@hey.com>2024-05-26 21:07:39 +0100
commit82c6999ec2ebe572665cc7db4fdb8223cddfc24d (patch)
tree88936c7d5e438413c4f1cf8d3b62e19cd9576574 /views/partials/eventGroupForm.handlebars
parent43296cd88b9ab6f3ba1d5f4de5f76f44b68de82a (diff)
Properly validate URLs when editing
Diffstat (limited to 'views/partials/eventGroupForm.handlebars')
-rw-r--r--views/partials/eventGroupForm.handlebars5
1 files changed, 3 insertions, 2 deletions
diff --git a/views/partials/eventGroupForm.handlebars b/views/partials/eventGroupForm.handlebars
index 284343f..5536e49 100644
--- a/views/partials/eventGroupForm.handlebars
+++ b/views/partials/eventGroupForm.handlebars
@@ -10,7 +10,8 @@
</div>
<div class="form-group">
<label for="eventGroupURL">Link</label>
- <input type="url" class="form-control" id="eventGroupURL" name="eventGroupURL" placeholder="For tickets or a page with more information (optional)." x-model="data.eventGroupURL">
+ <input type="url" class="form-control" id="eventGroupURL" name="eventGroupURL" placeholder="https://example.com" x-model="data.eventGroupURL">
+ <small class="form-text">For tickets or a page with more information (optional).</small>
</div>
<div class="form-group">
<label for="hostName">Host or organisation name</label>
@@ -57,4 +58,4 @@
</ul>
</div>
</div>
-</div> \ No newline at end of file
+</div>