tulip/pages/login.go.html

26 lines
657 B
HTML
Raw Normal View History

2023-09-06 22:20:09 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>1f349 ID</title>
</head>
<body>
<header>
<h1>1f349 ID</h1>
</header>
<main>
<form method="POST" action="/login">
<input type="hidden" name="redirect" value="{{.Redirect}}"/>
2023-09-06 22:20:09 +01:00
<div>
<label for="field_username">User Name:</label>
<input type="text" name="username" id="field_username" required/>
2023-09-06 22:20:09 +01:00
</div>
<div>
<label for="field_password">Password:</label>
<input type="password" name="password" id="field_password" required/>
2023-09-06 22:20:09 +01:00
</div>
<button type="submit">Login</button>
</form>
</main>
</body>
</html>