File size: 1,565 Bytes
b39cc0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>
        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>