52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
>
|
|
<title>Client Login</title>
|
|
<style>
|
|
body {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h3>这里是 xx 产品登录页面</h3>
|
|
<form>
|
|
<fieldset>
|
|
<label>
|
|
Username
|
|
<input
|
|
name="username"
|
|
placeholder="username"
|
|
autocomplete="given-name"
|
|
/>
|
|
</label>
|
|
<label>
|
|
Password
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
placeholder="password"
|
|
autocomplete="password"
|
|
/>
|
|
</label>
|
|
</fieldset>
|
|
|
|
<input
|
|
type="submit"
|
|
value="登录"
|
|
/>
|
|
<a href="/login?oauth=true">使用 OAuth V2 账号登录</a>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |