mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
22 lines
624 B
HTML
22 lines
624 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{.ServiceName}}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
</head>
|
|
<body>
|
|
{{template "header.go.html" .}}
|
|
<main>
|
|
<form method="POST" action="/login">
|
|
<input type="hidden" name="redirect" value="{{.Redirect}}"/>
|
|
<div>
|
|
<label for="field_loginname">Login Name:</label>
|
|
<input type="text" name="loginname" id="field_loginname" required/>
|
|
</div>
|
|
<button type="submit">Continue</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|