-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
51 lines (46 loc) · 2.24 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body style="TEXT-ALIGN: center;">
<div style="margin-bottom:30px;width:300px;TEXT-ALIGN: center;">
<p style="margin-top:30px;margin-bottom: 30px;;margin-left: auto; margin-right: auto">请设置你的JACCOUNT账号密码</p>
<form class="form-horizontal" style="margin-left: auto; margin-right: auto">
<div class="control-group" style="margin-bottom:10px;margin-left: auto; margin-right: auto">
<!--<label class="control-label" for="user">用户名</label> -->
<div class="controls">
<input class="form-input" type="text" id="user" name="user" placeholder="用户名">
</div>
</div>
<div>
<!--<label class="control-label" for="psw">密码</label> -->
<div class="input-control" style="margin-bottom:10px;margin-left: auto; margin-right: auto">
<input class="form-input" type="password" id="psw" name="psw" placeholder="密码">
</div>
</div>
<div class="control-group" style="margin-bottom:10px;margin-left: auto; margin-right: auto">
<label class="checkbox">
<input type="checkbox" id="autoBox"> 启用自动登陆
</label>
<div class="controls">
<button id="ok" class="btn btn-info">确定</button>
</div>
<div>
<p id="suc"></p>
</div>
</div>
<script type="text/javascript" src="jquery-3.2.0.min.js"></script>
<script type="text/javascript" src="bootstrap.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
<link href="bootstrap.css" rel="stylesheet">
<p><a href="https://github.com/fztfztfztfzt/jaccount-captha" style="font-size:12px;text-align:center;float: right;margin-right:20px"><br>Github Page</a></p>
<p style="font-size:10px;text-align:left;float: left;margin-left: 15px">Contact us:<br>
<a href="mailto:[email protected]" style="font-size:9px;">[email protected]</a><br>
<a href="mailto:[email protected]" style="font-size:9px;">[email protected]</a>
</p>
</form>
</div>
</body>
</html>