summaryrefslogtreecommitdiff
path: root/views/partials/eventForm.handlebars
diff options
context:
space:
mode:
Diffstat (limited to 'views/partials/eventForm.handlebars')
-rwxr-xr-xviews/partials/eventForm.handlebars14
1 files changed, 7 insertions, 7 deletions
diff --git a/views/partials/eventForm.handlebars b/views/partials/eventForm.handlebars
index 8714058..53f7683 100755
--- a/views/partials/eventForm.handlebars
+++ b/views/partials/eventForm.handlebars
@@ -1,24 +1,24 @@
<input type="hidden" name="magicLinkToken" value="{{magicLinkToken}}" x-ref="magicLinkToken">
<div class="form-group">
- <label for="eventName" >{{t "common.eventname" }}</label>
+ <label for="eventName" >*{{t "common.eventname" }}</label>
<div class="form-group ">
<input type="text" class="form-control" id="eventName" name="eventName" placeholder="{{t "views.partials.snappy" }}" x-model="data.eventName" >
</div>
</div>
<div class="form-group">
- <label for="eventLocation" >{{t "common.eventlocation" }}</label>
+ <label for="eventLocation" >*{{t "common.eventlocation" }}</label>
<div class="form-group ">
<input type="text" class="form-control" id="eventLocation" name="eventLocation" placeholder="{{t "views.event.locationdesc" }}" x-model="data.eventLocation">
</div>
</div>
<div class="form-group">
- <label for="eventStart" >{{t "common.eventstart" }}</label>
+ <label for="eventStart" >*{{t "common.eventstart" }}</label>
<div class="form-group">
<input type="datetime-local" class="form-control" id="eventStart" name="eventStart" x-model="data.eventStart" x-on:blur="updateEventEnd">
</div>
</div>
<div class="form-group">
- <label for="eventEnd" >{{t "common.eventend" }}</label>
+ <label for="eventEnd" >*{{t "common.eventend" }}</label>
<div class="form-group ">
<input type="datetime-local" class="form-control" id="eventEnd" name="eventEnd" x-model="data.eventEnd">
</div>
@@ -30,7 +30,7 @@
</div>
</div>
<div class="form-group">
- <label for="eventDescription" >{{t "views.partials.eventform.eventdescription" }}</label>
+ <label for="eventDescription" >*{{t "views.partials.eventform.eventdescription" }}</label>
<div class="form-group ">
<textarea class="form-control expand" id="eventDescription" name="eventDescription" placeholder="{{t "views.event.editlater" }}" x-model="data.eventDescription" ></textarea>
<small class="form-text">{{{t "views.partials.mdsupport" }}}</small>
@@ -39,7 +39,7 @@
<div class="form-group">
<label for="eventURL">{{t "views.partials.eventform.eventurl" }}</label>
<div class="form-group ">
- <input type="url" class="form-control" id="eventURL" name="eventURL" placeholder="https://example.com" x-model="data.eventURL">
+ <input type="url" class="form-control" id="eventURL" name="eventURL" placeholder="" x-model="data.eventURL">
<small class="form-text">{{t "views.partials.eventform.eventurldesc" }}</small>
</div>
</div>
@@ -65,7 +65,7 @@
</div>
</div>
<div class="form-group">
- <label for="creatorEmail" >{{t "views.partials.eventform.creatoremail" }}</label>
+ <label for="creatorEmail" >*{{t "views.partials.eventform.creatoremail" }}</label>
<div class="form-group ">
<input type="email" class="form-control" id="creatorEmail" name="creatorEmail" placeholder="{{t "views.partials.wontshow" }}" x-model.fill="data.creatorEmail" {{#if creatorEmail}}value="{{creatorEmail}}" readonly{{/if}}>
<small class="form-text">{{t "views.partials.creatoremaildesc" }}</small>