-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
28 lines (25 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>hibp-js demo</title>
<link href="https://getbootstrap.com/docs/4.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T">
<link href="./demo.css" rel="stylesheet">
<script src="../lib/hibp.min.js"></script>
</head>
<body class="text-center">
<div class="form-signin">
<h1 class="h3 mb-3 font-weight-normal">Check entries in <a href="https://haveibeenpwned.com/" target="_BLANK">hibp</a></h1>
<input type="text" id="value" class="form-control" placeholder="Password" autofocus />
<small id="danger" class="form-text text-danger"></small>
<small id="success" class="form-text text-success"></small>
<div class="btn-group mt-3" role="group" aria-label="Basic example">
<button type="button" id="checkPass" class="btn btn-success">Check password</button>
</div>
<p class="mt-5 mb-3 text-muted">Made by <a href="https://twitter.com/bounyamehdi">@bounyamehdi</a></p>
</div>
<script src="./demo.js"></script>
</body>
</html>