This repository has no description
1{{ define "repo/fragments/spindleInput" }}
2 {{/* free text: membership lives on the spindle, so the appview can't offer a
3 closed list. .Spindles is only a type-ahead of recently used spindles. */}}
4 <input
5 type="text"
6 id="spindle"
7 name="spindle"
8 list="spindle-options"
9 value="{{ .Current }}"
10 placeholder="spindle.example.com"
11 autocomplete="off"
12 spellcheck="false"
13 class="{{ or .Class "w-full py-2" }}"
14 />
15 <datalist id="spindle-options">
16 {{ range .Spindles }}
17 <option value="{{ . }}"></option>
18 {{ end }}
19 </datalist>
20{{ end }}