forked from ayushs08/passworld
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (60 loc) · 1.86 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Passworld</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="patternLock/patternLock-master/patternLock.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway|ABeeZee" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="patternLock/patternLock-master/patternLock.js"></script>
<script src="js/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js"></script>
</head>
<body ng-app="myApp" ng-controller="myCtrl">
<div class="nav">
<ul>
<li>
<i class="fa fa-connectdevelop"></i><span>PassWorld</span>
</li>
<li></li>
</ul>
</div>
<div class="main">
<div class="col-left">
<div class="pattern">
<div class="tip">Step 2: Draw your pattern</div>
<div id="patternHolder"></div>
</div>
</div>
<div class="col-right">
<div class="flavors">
<div class="tip">Step 1: Pick your flavor</div>
<ul>
<li>purple</li>
<li>red</li>
<li>yellow</li>
<li>blue</li>
<li>orange</li>
<li>green</li>
</ul>
<div class="or">
<div class="rule"></div>
oR
<div class="rule"></div>
</div>
<label>
<input type="text" ng-model="hash" required/>
<div class="label-text">Custom</div>
</label>
</div>
<div class="password">
<div class="tip">Step 3: Copy your new password</div>
<div class="text"></div>
</div>
</div>
</div>
</body>
</html>