forked from pogosandbox/pogosandbox.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
is-api-cracked.html
35 lines (35 loc) · 1.21 KB
/
is-api-cracked.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
<!doctype html>
<html lang="en">
<head>
<title>latest version</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" crossorigin="anonymous">
<script src='https://code.jquery.com/jquery-3.2.1.min.js'></script>
<script>
$(function() {
$.getJSON('https://runkit.io/nicoschmitt/api-version/2.0.1/iscracked?format=jsonp&callback=?')
.done(data => {
$('.main').text(data ? "yes" : "no");
});
});
</script>
<style>
html, body {
background-color: #333;
color: #eee;
font-family: Roboto;
margin: 0;
}
.main {
margin-top: 1em;
text-align: center;
font-size: 4em;
}
</style>
</head>
<body>
<div class="main">asking people...</div>
</body>
</html>