2023-09-09 01:38:10 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2023-09-15 13:06:31 +01:00
< title > {{.ServiceName}}< / title >
2023-12-17 16:03:13 +00:00
< link rel = "stylesheet" href = "/theme/style.css" >
2023-09-09 01:38:10 +01:00
< / head >
< body >
< header >
2023-09-15 13:06:31 +01:00
< h1 > {{.ServiceName}}< / h1 >
2023-09-09 01:38:10 +01:00
< / header >
< main >
2023-11-09 11:01:19 +00:00
< form method = "POST" action = "/login/otp" autocomplete = "off" >
2023-09-09 01:38:10 +01:00
< input type = "hidden" name = "redirect" value = "{{.Redirect}}" / >
< div >
< label for = "field_code" > OTP Code:< / label >
2023-11-25 15:08:44 +00:00
< input type = "text" name = "code" id = "field_code" required pattern = "[0-9]{6,8}" title = "6/7/8 digit one time passcode" autocomplete = "off" autofocus aria-autocomplete = "none" role = "presentation" / >
2023-09-09 01:38:10 +01:00
< / div >
< button type = "submit" > Login< / button >
< / form >
< / main >
< / body >
< / html >