Disable autocomplete for the API radios

This commit is contained in:
Natty 2023-07-20 02:03:49 +02:00
parent ba6a1cdcf6
commit 69fac1cc40
No known key found for this signature in database
GPG key ID: BF6CB659ADEE60EC

View file

@ -18,9 +18,9 @@
<input id="txt_mastodon_handle" type="text" onchange="document.getElementById('btn_create').style = 'display: inline;'; document.getElementById('btn_download').style = 'display: none;'" placeholder="@sonnenbrandi@mieke.club"> <input id="txt_mastodon_handle" type="text" onchange="document.getElementById('btn_create').style = 'display: inline;'; document.getElementById('btn_download').style = 'display: none;'" placeholder="@sonnenbrandi@mieke.club">
<br><br> <br><br>
<span> <span>
<label><input type="radio" name="backend" value="detect" checked> Autodetect</label> <label><input type="radio" name="backend" value="detect" autocomplete="off" checked> Autodetect</label>
<label><input type="radio" name="backend" value="mastodon"> Mastodon API</label> <label><input type="radio" name="backend" value="mastodon" autocomplete="off"> Mastodon API</label>
<label><input type="radio" name="backend" value="misskey"> Misskey API</label> <label><input type="radio" name="backend" value="misskey" autocomplete="off"> Misskey API</label>
</span> </span>
<br> <br>
<button type="submit" id="generateButton">Generate circle</button> <button type="submit" id="generateButton">Generate circle</button>