Disable browser autocomplete adding stream members.

We have our own autocomplete, and the two forms of autocomplete
conflict with each other awkwardly.
This commit is contained in:
Tim Abbott 2016-07-06 15:52:42 -07:00
parent 7ef434ec62
commit 8fb4e161dd
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@
<span class="sub_settings_title">{{t "Stream membership" }}</span>
<div class="subscriber_list_add">
<form class="form-inline">
<input type="text" name="principal" placeholder="{{t 'Email address' }}" value="" class="input-block" tabindex="-1" />
<input type="text" name="principal" placeholder="{{t 'Email address' }}" value="" class="input-block" autocomplete="off" tabindex="-1" />
<input type="submit" name="add_subscriber" value="{{t 'Add' }}" class="btn btn-primary add-subscriber-button" tabindex="-1 "/>
</form>
</div>