-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.html
53 lines (53 loc) · 2.28 KB
/
reg.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>聊天机器人-用户注册</title>
<link rel="shortcut icon" href="./asset/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./css/common.css" />
<link rel="stylesheet" href="./css/user.css" />
</head>
<body>
<form class="user-form">
<h1 class="title">
<img src="./asset/robot.png" alt="" />
聊天机器人
</h1>
<div class="form-group">
<i class="iconfont icon-zhanghao"></i>
<input id="txtLoginId" name="loginId" type="text" max="20" placeholder="请输入账号" class="txt" />
<p class="err"></p>
</div>
<div class="form-group">
<i class="iconfont icon-zhanghao"></i>
<input id="txtNickname" name="nickname" type="text" max="20" placeholder="请输入昵称" class="txt" />
<p class="err"></p>
</div>
<div class="form-group">
<i class="iconfont icon-mima"></i>
<input id="txtLoginPwd" name="loginPwd" type="password" max="20" placeholder="请输入密码" class="txt" />
<p class="err"></p>
</div>
<div class="form-group">
<i class="iconfont icon-mima"></i>
<input type="password" id="txtLoginPwdConfirm" max="20" placeholder="请再输入一次密码" class="txt" />
<p class="err"></p>
</div>
<div class="form-group">
<button class="submit">注册</button>
</div>
<div class="form-group">
<p class="msg">
已有账号?
<a href="./login.html">点击这里登录</a>
</p>
</div>
</form>
<script src="./js/api.js" type="module"></script>
<script src="./js/common.js" type="module"></script>
<script src="./js/user.js" type="module"></script>
<script src="./js/reg.js" type="module"></script>
</body>
</html>