Files
zulip/web/templates/add_poll_modal.hbs
Tim Abbott 83078aea16 poll_modal: Disable browser autocomplete on question field.
We disable this on most similar inputs, and it is likely more
distracting than helpful.
2025-02-14 14:57:24 -08:00

14 lines
599 B
Handlebars

<form id="add-poll-form">
<label class="poll-label">{{t "Question"}}</label>
<div class="poll-question-input-container">
<input type="text" id="poll-question-input" autocomplete="off" class="modal_text_input" placeholder="{{t 'Your question'}}" />
</div>
<label class="poll-label">{{t "Options"}}</label>
<p>{{t "Anyone can add more options after the poll is posted."}}</p>
<ul class="poll-options-list" data-simplebar data-simplebar-tab-index="-1">
{{> poll_modal_option }}
{{> poll_modal_option }}
{{> poll_modal_option }}
</ul>
</form>