| <!DOCTYPE html>
|
| <html lang="en">
|
| <head>
|
| <meta charset="UTF-8">
|
| <title>PNEUMONIA DETECTION Using Deep Learning</title>
|
| <style>
|
| body {
|
| margin: 0;
|
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| background-color: #ffffff;
|
| text-align: center;
|
| }
|
|
|
| .navbar {
|
| background-color: #2c3e50;
|
| color: white;
|
| padding: 15px;
|
| font-size: 18px;
|
| }
|
|
|
| h1 {
|
| margin-top: 40px;
|
| font-size: 28px;
|
| color: #222;
|
| }
|
|
|
| .upload-box {
|
| margin-top: 30px;
|
| }
|
|
|
| .custom-file-input {
|
| padding: 10px 15px;
|
| border: none;
|
| background-color: #28a745;
|
| color: white;
|
| font-size: 16px;
|
| border-radius: 6px;
|
| cursor: pointer;
|
| }
|
|
|
| .custom-file-input:hover {
|
| background-color: #218838;
|
| }
|
|
|
| input[type="file"] {
|
| display: none;
|
| }
|
|
|
| label {
|
| display: inline-block;
|
| margin-bottom: 10px;
|
| }
|
| </style>
|
| </head>
|
| <body>
|
| <div class="navbar">
|
| Advance Project : PNEUMONIA DETECTION Using Deep Learning
|
| </div>
|
|
|
| <h1>PNEUMONIA DETECTION Using Deep Learning</h1>
|
|
|
| <div class="upload-box">
|
| <form action="/predict" method="post" enctype="multipart/form-data">
|
| <label class="custom-file-input">
|
| Choose File
|
| <input type="file" name="file" accept="image/*" required>
|
| </label>
|
| <br><br>
|
| <button class="custom-file-input" type="submit">Predict</button>
|
| </form>
|
| </div>
|
| </body>
|
| </html>
|
|
|