stash/ui/login/login.html
2024-02-06 10:22:32 +11:00

40 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<base href="/%BASE_URL%/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Login</title>
<link rel="shortcut icon" href="data:,">
<link rel="stylesheet" href="login/login.css">
<link rel="stylesheet" href="css">
</head>
<body class="login">
<div class="dialog">
<div class="card">
<form action="login" method="POST">
<div class="form-group">
<label for="username"><h6>Username</h6></label>
<input class="text-input form-control" id="username" name="username" type="text" placeholder="Username" />
</div>
<div class="form-group">
<label for="password"><h6>Password</h6></label>
<input class="text-input form-control" id="password" name="password" type="password" placeholder="Password" />
</div>
<div class="login-error">
{{.Error}}
</div>
<input type="hidden" name="returnURL" value="{{.URL}}" />
<div>
<input class="btn btn-primary" type="submit" value="Login">
</div>
</form>
</div>
</div>
</body>
</html>