2023-10-01 21:44:49 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{{.ServiceName}}</title>
|
2024-05-16 03:06:10 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="stylesheet" href="/assets/style.css">
|
2023-10-01 21:44:49 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-05-16 03:06:10 +01:00
|
|
|
{{template "header.go.html" .}}
|
2023-10-01 21:44:49 +01:00
|
|
|
<main>
|
2024-02-07 01:18:17 +00:00
|
|
|
<form method="POST" action="/login">
|
2024-02-10 02:53:58 +00:00
|
|
|
<input type="hidden" name="redirect" value="{{.Redirect}}"/>
|
2023-10-01 21:44:49 +01:00
|
|
|
<div>
|
2023-10-04 21:53:20 +01:00
|
|
|
<label for="field_loginname">Login Name:</label>
|
|
|
|
<input type="text" name="loginname" id="field_loginname" required/>
|
2023-10-01 21:44:49 +01:00
|
|
|
</div>
|
|
|
|
<button type="submit">Continue</button>
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|