-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvcode.html
More file actions
25 lines (24 loc) · 805 Bytes
/
vcode.html
File metadata and controls
25 lines (24 loc) · 805 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>请输入验证码</title>
<meta charset>
<link href="css/vcode.css" rel="stylesheet" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/button.css">
<script src="js/spin.min.js"></script>
<script src="js/vcode.js"></script>
</head>
<body>
<div class="input-code-row">
<input type="text" id="input-code" maxlength="4">
<a href="javascript:;" id="change-img-code-btn"><img id="img-code" alt="验证码获取中" src=""></a>
</div>
<div id="verify-error" ></div>
<div class="btn-row">
<a id="ok-btn" href="#" class="button button-pill button-flat-primary">确定</a>
</div>
<div class="spin-shape"></div>
</body>
</html>