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/neweventform.handlebars | |
parent | 1873af016e95bf2df512e332c7014e233cd57c17 (diff) |
Make emails optional when creating events/groups
Diffstat (limited to 'views/partials/neweventform.handlebars')
-rwxr-xr-x | views/partials/neweventform.handlebars | 4 |
1 files changed, 2 insertions, 2 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"> |