2024-03-25 00:37:06 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-03-29 05:16:18 +00:00
|
|
|
<p>oy, guv, there've been <span id="allhits">no</span> hits, mate.</p>
|
2024-03-25 00:37:06 +00:00
|
|
|
|
2024-03-29 05:16:18 +00:00
|
|
|
<script defer>
|
2024-03-25 00:37:06 +00:00
|
|
|
const hits = document.getElementById('allhits');
|
2024-03-29 05:16:18 +00:00
|
|
|
fetch('http://localhost:5000/hit/user').then((resp) => {
|
2024-03-25 00:37:06 +00:00
|
|
|
return resp.text();
|
|
|
|
}).then((data) => {
|
2024-03-28 04:29:37 +00:00
|
|
|
hits.innerHTML = data;
|
2024-03-25 00:37:06 +00:00
|
|
|
});
|
|
|
|
</script>
|
2024-03-29 05:16:18 +00:00
|
|
|
|
2024-03-25 00:37:06 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|