Autonomous-AI / dashboard.html
Leonydis137's picture
Upload 19 files
d584940 verified
raw
history blame contribute delete
627 Bytes
<!DOCTYPE html>
<html>
<head>
<title>AI Task Analytics</title>
<style>body { font-family: sans-serif; }</style>
</head>
<body>
<h1>πŸ“Š Autonomous AI Analytics</h1>
<div id="goals"></div>
<div id="feedback"></div>
<script>
async function fetchData() {
const g = await fetch("/goals").then(r => r.text());
const f = await fetch("/feedback").then(r => r.text());
document.getElementById('goals').innerHTML = "<h2>Goals:</h2><pre>" + g + "</pre>";
document.getElementById('feedback').innerHTML = "<h2>Feedback:</h2><pre>" + f + "</pre>";
}
fetchData();
</script>
</body>
</html>