Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Input Page</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f4f7f6; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| .container { | |
| max-width: 600px; | |
| margin: 50px auto; | |
| padding: 20px; | |
| background-color: #ffffff; | |
| border-radius: 10px; | |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | |
| } | |
| h1 { | |
| text-align: center; | |
| color: #333; | |
| } | |
| label { | |
| display: block; | |
| margin: 10px 0 5px; | |
| color: #555; | |
| } | |
| input[type="number"] { | |
| width: 100%; | |
| padding: 10px; | |
| margin: 5px 0 15px; | |
| border: 1px solid #ccc; | |
| border-radius: 5px; | |
| } | |
| button { | |
| padding: 10px 20px; | |
| background-color: #5cb85c; | |
| border: none; | |
| color: white; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| width: 100%; | |
| } | |
| button:hover { | |
| background-color: #4cae4c; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>Enter Inputs for Prediction</h1> | |
| <form action="/predict" method="POST"> | |
| <label for="input1">Input 1:</label> | |
| <input type="number" id="input1" name="input1" required> | |
| <label for="input2">Input 2:</label> | |
| <input type="number" id="input2" name="input2" required> | |
| <label for="input3">Input 3:</label> | |
| <input type="number" id="input3" name="input3" required> | |
| <label for="input4">Input 4:</label> | |
| <input type="number" id="input4" name="input4" required> | |
| <label for="input5">Input 5:</label> | |
| <input type="number" id="input5" name="input5" required> | |
| <label for="input6">Input 6:</label> | |
| <input type="number" id="input6" name="input6" required> | |
| <label for="input7">Input 7:</label> | |
| <input type="number" id="input7" name="input7" required> | |
| <button type="submit">Submit</button> | |
| </form> | |
| </div> | |
| </body> | |
| </html> | |