Spaces:
Sleeping
Sleeping
File size: 2,827 Bytes
4aadcb7 |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Birds Count</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.header, .footer {
background-color: #216d7c;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
}
.header-content {
display: flex;
align-items: center;
}
.content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
img {
max-width: 100%;
height: auto;
}
.logo {
height: 40px;
margin-right: 10px;
}
.header-text {
font-size: 24px;
font-weight: bold;
color: white;
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-text {
color: white;
margin-bottom: 10px;
}
.social-links img {
height: 24px;
margin: 0 5px;
}
</style>
</head>
<body>
<div class="header">
<div class="header-content">
<!-- <img src="pyresearch.png" alt="Logo" class="logo"> -->
<div class="header-text"> Bird Count Dashboard</div>
</div>
</div>
<div class="content">
<h2>Current Bird Count: {{ bird_count }}</h2>
<img src="{{ url_for('video_feed') }}" width="720" height="480">
</div>
<div class="footer">
<div class="footer-content">
<div class="footer-text"> 2024 | All rights reserved</div>
<div class="social-links">
<a href="https://www.facebook.com/Pyresearch" target="_blank">
<img src="" alt="Facebook">
</a>
<a href="https://www.youtube.com/Pyresearch" target="_blank">
<img src="" alt="YouTube">
</a>
<a href="https://www.instagram.com/pyresearch/" target="_blank">
<img src="" alt="Instagram">
</a>
<a href="https://www.tiktok.com/@pyresearch2" target="_blank">
<img src="" alt="TikTok">
</a>
</div>
</div>
</div>
</body>
</html>
|