diff options
| author | Raphael Kabo <raphaelkabo@gmail.com> | 2022-01-17 11:19:22 +0000 | 
|---|---|---|
| committer | Raphael Kabo <raphaelkabo@gmail.com> | 2022-01-17 11:19:22 +0000 | 
| commit | 4ef3273f8bca7ad84140730cea9e7842ee5a0a79 (patch) | |
| tree | 6821e50a901589a7533a97e2211c4378d3780734 /views/partials | |
| parent | 1873af016e95bf2df512e332c7014e233cd57c17 (diff) | |
Make emails optional when creating events/groups
Diffstat (limited to 'views/partials')
| -rwxr-xr-x | views/partials/neweventform.handlebars | 4 | ||||
| -rwxr-xr-x | views/partials/neweventgroupform.handlebars | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/views/partials/neweventform.handlebars b/views/partials/neweventform.handlebars index 829ec42..ea13298 100755 --- a/views/partials/neweventform.handlebars +++ b/views/partials/neweventform.handlebars @@ -74,8 +74,8 @@    <div class="form-group row">      <label for="creatorEmail" class="col-sm-2 col-form-label">Your email</label>      <div class="form-group col-sm-10"> -      <input type="email" class="form-control" id="creatorEmail" name="creatorEmail" placeholder="We won't spam you <3" data-validation="email required"> -      <small class="form-text">We will send your secret editing link to this email address.</small> +      <input type="email" class="form-control" id="creatorEmail" name="creatorEmail" placeholder="We won't spam you <3 (optional)" data-validation="email" data-validation-optional="true"> +      <small class="form-text">If you provide your email, we will send your secret editing password here, and use it to notify you of updates to the event.</small>      </div>    </div>    <div class="form-group row"> diff --git a/views/partials/neweventgroupform.handlebars b/views/partials/neweventgroupform.handlebars index 8201c60..616b8ca 100755 --- a/views/partials/neweventgroupform.handlebars +++ b/views/partials/neweventgroupform.handlebars @@ -40,8 +40,8 @@    <div class="form-group row">      <label for="creatorEmail" class="col-sm-2 col-form-label">Your email</label>      <div class="form-group col-sm-10"> -      <input type="email" class="form-control" id="creatorEmail" name="creatorEmail" placeholder="We won't spam you <3" data-validation="email required"> -      <small class="form-text">We will send your secret editing link to this email address.</small> +      <input type="email" class="form-control" id="creatorEmail" name="creatorEmail" placeholder="We won't spam you <3 (optional)" data-validation="email" data-validation-optional="true"> +      <small class="form-text">If you provide your email, we will send your secret editing password here, and use it to notify you of updates to the event.</small>      </div>    </div>    <div class="form-group row">  | 
