File size: 1,826 Bytes
0356080 |
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
<!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>
|