103 lines
3.0 KiB
HTML
103 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>登录 - OIDC 服务</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
margin: 0;
|
|
padding: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.login-container {
|
|
background-color: white;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
color: #333;
|
|
}
|
|
input[type="text"],
|
|
input[type="password"] {
|
|
width: 100%;
|
|
padding: 8px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
button {
|
|
background-color: #007bff;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
.error {
|
|
color: #dc3545;
|
|
margin-bottom: 15px;
|
|
}
|
|
.signup-link {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
.signup-link a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
.signup-link a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<h2 style="text-align: center; margin-bottom: 30px;">登录</h2>
|
|
{{if .Error}}
|
|
<div class="error">{{.Error}}</div>
|
|
{{end}}
|
|
<form method="POST" action="/login">
|
|
<input type="hidden" name="redirect_uri" value="{{.RedirectURI}}">
|
|
<input type="hidden" name="state" value="{{.State}}">
|
|
<input type="hidden" name="client_id" value="{{.ClientID}}">
|
|
<input type="hidden" name="response_type" value="{{.ResponseType}}">
|
|
<input type="hidden" name="scope" value="{{.Scope}}">
|
|
|
|
<div class="form-group">
|
|
<label for="username">用户名</label>
|
|
<input type="text" id="username" name="username" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">密码</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
|
|
<button type="submit">登录</button>
|
|
</form>
|
|
<div class="signup-link">
|
|
还没有账号?<a href="/signup">立即注册</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |