diff options
Diffstat (limited to 'views/partials/neweventform.handlebars')
-rwxr-xr-x | views/partials/neweventform.handlebars | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/views/partials/neweventform.handlebars b/views/partials/neweventform.handlebars index 8f2b32e..bf6d0ed 100755 --- a/views/partials/neweventform.handlebars +++ b/views/partials/neweventform.handlebars @@ -25,6 +25,12 @@ </div> </div> <div class="form-group row"> + <label for="timezone" class="col-sm-2 col-form-label">Timezone</label> + <div class="form-group col-sm-10"> + <select class="select2" id="timezone" name="timezone"></select> + </div> + </div> + <div class="form-group row"> <label for="eventDescription" class="col-sm-2 col-form-label">Description</label> <div class="form-group col-sm-10"> <textarea class="form-control expand" id="eventDescription" name="eventDescription" data-validation="required" placeholder="You can always edit it later."></textarea> @@ -95,6 +101,8 @@ </div> </form> +<script type="text/javascript" src="/js/generate-timezones.js"></script> + <script> $(document).ready(function() { $.uploadPreview({ |