-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.php
46 lines (37 loc) · 827 Bytes
/
example.php
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
<!DOCTYPE html>
<html>
<head>
<script src="bloomer.js"></script>
<!-- jQuery is only for example, it's not required -->
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<style>
#bloomer {
background: #afa;
padding: 10px;
}
#bloomer.hit {
background: #faa;
}
</style>
</head>
<body>
<input type="hidden" id="bloomhex" value="<?php echo file_get_contents('bloom.hex')?>"/>
<div id="bloomer">
<input type="text" id="password">
<button id="button">Check</button>
</div>
<script>
$(function () {
var bloomer = new Bloomer({
hex: $('#bloomhex').val()
});
$('#button').click(function (e) {
e.preventDefault();
var result = bloomer.check($('#password').val());
console.log("result = ", result);
$('#bloomer').toggleClass('hit', result);
});
});
</script>
</body>
</html>