Files
netbird/proxy/internal/auth/auth.gohtml
2026-01-29 16:34:52 +00:00

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 }}