Spaces:
Running
on
T4
Running
on
T4
Sean Carnahan
Incorporate external/BodybuildingPoseClassifier files directly, remove submodule
b39cc0b
<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> | |
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); | |
} | |
input[type="file"] { | |
margin: 0.625rem 0; | |
} | |
input[type="submit"] { | |
background-color: #179DE3; | |
color: #FFFFFF; | |
border: none; | |
padding: 0.625rem 1.25rem; | |
border-radius: 0.3125rem; | |
cursor: pointer; | |
} | |
input[type="submit"]:hover { | |
background-color: #1277A8; | |
} | |
h1 { | |
margin-bottom: 0.625rem; | |
} | |
p { | |
margin-top: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Bodybuilding Pose Classifier</h1> | |
<p>Upload an image to find out which bodybuilding pose it is.</p> | |
<form method="post" enctype="multipart/form-data"> | |
<input type="file" name="file" required> | |
<input type="submit" value="Upload"> | |
</form> | |
</div> | |
</body> | |
</html> | |