mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 00:36:38 +00:00
17 lines
418 B
Plaintext
17 lines
418 B
Plaintext
<!doctype html>
|
|
{{ range $method, $value := .Methods }}
|
|
{{ if eq $method "pin" }}
|
|
<form>
|
|
<label for={{ $value }}>PIN:</label>
|
|
<input name={{ $value }} id={{ $value }} />
|
|
<button type=submit></button>
|
|
</form>
|
|
{{ else if eq $method "password" }}
|
|
<form>
|
|
<label for={{ $value }}>Password:</label>
|
|
<input name={{ $value }} id={{ $value }}/>
|
|
<button type=submit></button>
|
|
</form>
|
|
{{ end }}
|
|
{{ end }}
|