29 lines
755 B
HTML
29 lines
755 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Visitor Counter</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to the Visitor Counter App!</h1>
|
|
<h2>Made by ALI</h2>
|
|
<h3>Also made for assinment 1</h3>
|
|
<p>This page has been visited <span id="counter">0</span> times.</p>
|
|
|
|
<script>
|
|
async function updateCounter() {
|
|
try {
|
|
const response = await fetch('http://localhost:5001/counter');
|
|
const data = await response.json();
|
|
document.getElementById('counter').textContent = data.visits;
|
|
} catch (error) {
|
|
console.error('Error fetching counter:', error);
|
|
}
|
|
}
|
|
|
|
updateCounter();
|
|
</script>
|
|
</body>
|
|
</html>
|