mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 00:36:38 +00:00
15 lines
258 B
Plaintext
15 lines
258 B
Plaintext
<!doctype html>
|
|
{{ range . }}
|
|
{{ if eq .Key "pin" }}
|
|
<form>
|
|
<input name={{ . }} />
|
|
<button type=submit></button>
|
|
</form>
|
|
{{ else if eq .Key "password" }}
|
|
<form>
|
|
<input name={{ . }} />
|
|
<button type=submit></button>
|
|
</form>
|
|
{{ end }}
|
|
{{ end }}
|