-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 987 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>h5解锁</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id='h5lock'>
<header class='header'>
<h1>手势密码</h1>
<button id='reset'>重置密码</button>
</header>
<div class='wrapper'>
<canvas id='canvas'></canvas>
<p class='input-lg' id='hint'>请设置初始密码</p>
</div>
<div class='wrapper input-lg' id='radio'>
<div class="radio">
<label><input type="radio" name="model" value="set" checked>设置密码</label>
</div>
<div class="radio">
<label><input type="radio" name="model" value="check">验证密码</label>
</div>
</div>
</div>
<script src='js/canvas.min.js'></script>
</body>
</html>