You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<style>
|
|
form {
|
|
width: 280px;
|
|
margin: 45px auto;
|
|
}
|
|
fieldset {
|
|
background: antiquewhite;
|
|
}
|
|
.p12 {padding: 24px}
|
|
.mb12 {margin-bottom: 12px}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<form action="/oauth2/login" method="post">
|
|
<fieldset class="p12 mb12">
|
|
<legend>登陆</legend>
|
|
<div class="mb12">
|
|
<label for="username">用户名/手机号码/邮箱地址</label>
|
|
<input type="text" name="username" id="username">
|
|
</div>
|
|
<div class="mb12">
|
|
<div>
|
|
<label for="password">登录密码</label>
|
|
<a href="#">忘记密码</a>
|
|
</div>
|
|
<input class="w100" type="password" name="password" id="password">
|
|
</div>
|
|
<div>
|
|
<button type="submit">登陆</button>
|
|
</div>
|
|
</fieldset>
|
|
<div>
|
|
新用户登陆?<a href="#">创建账号</a>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|