Sean Carnahan
Incorporate external/BodybuildingPoseClassifier files directly, remove submodule
b39cc0b
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bodybuilding Pose Classifier</title>
<style>
:root {
font-size: 1rem;
}
body {
background-color: #121212;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
background-color: #1E1E1E;
padding: 1.25rem;
border-radius: 0.625rem;
box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5);
}
.pose {
font-size: 1.5rem;
margin-top: 1.25rem;
}
a {
color: #179DE3;
text-decoration: none;
margin-top: 1.25rem;
display: inline-block;
}
a:hover {
color: #1277A8;
}
h1 {
margin-bottom: 0.625rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Prediction Result</h1>
<div class="pose">Predicted pose: {{ pose }}</div>
<a href="/">Upload another file</a>
</div>
</body>
</html>