20 lines
515 B
PHP
20 lines
515 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>API Status Button</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<button id="statusButton" onclick="handleButtonClick()">Loading...</button>
|
|
</div>
|
|
<?php
|
|
$status = file_get_contents("http://172.17.0.1:5000/status");
|
|
echo $status;
|
|
?>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|