diff options
| author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-09 23:53:11 +0100 | 
|---|---|---|
| committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-09 23:53:11 +0100 | 
| commit | 116a1ac2025c891371f6f5f33b6e39aca23a098b (patch) | |
| tree | b0df00b36e7b10f700fdd62e2f41946c3141cdc0 /views/partials/eventForm.handlebars | |
| parent | 0eb9d0b572830fa1a0f09435a6baf7ab9ebd8cfc (diff) | |
Make modal HTML valid, improve button labels
Diffstat (limited to 'views/partials/eventForm.handlebars')
| -rwxr-xr-x | views/partials/eventForm.handlebars | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/views/partials/eventForm.handlebars b/views/partials/eventForm.handlebars index 49c0f86..852a3a3 100755 --- a/views/partials/eventForm.handlebars +++ b/views/partials/eventForm.handlebars @@ -36,7 +36,7 @@    </div>  </div>  <div class="form-group"> -  <label for="eventURL" >Link</label> +  <label for="eventURL">Link</label>    <div class="form-group ">      <input type="url" class="form-control" id="eventURL" name="eventURL" placeholder="For tickets or another event page (optional)." x-model="data.eventURL" >    </div> @@ -50,7 +50,9 @@      </div>      <small class="form-text">Recommended dimensions (w x h): 920px by 300px.</small>      {{#if eventData.image}} -      <button type="button" class="btn btn-danger" id="deleteImage">Delete image</button> +      <div class="form-group my-2"> +        <button type="button" class="btn btn-danger" id="deleteImage">Delete image</button> +      </div>      {{/if}}    </div>  </div> @@ -85,7 +87,7 @@            <label>Choose a group you've edited before</label>          </div>          <div class="form-group" x-show="data.groups.length > 0"> -          <select x-ref="eventGroupSelect" id="eventGroupSelect" name="eventGroupSelect" class="form-control" x-on:change="selectGroup"> +          <select x-ref="eventGroupSelect" id="eventGroupSelect" name="eventGroupSelect" class="form-control" x-on:change="selectGroup" x-model="data.eventGroupID">              <option value="">Choose a group</option>              <template x-for="group in data.groups">                <option :value="group.id" x-text="group.name"></option>  | 
