[48affa]: / Templates / home.html

Download this file

18 lines (17 with data), 640 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Upload Image</title>
</head>
<body>
<div class="col-sm">
<h1><span class="badge badge-danger">Leukemia Prediction</span></h1>
</div>
<div class="col-sm">
<form action = "/predict" method = "post" enctype="multipart/form-data">
<input type="file" accept = "image/*" name="file" />
<input type = "submit" value="Upload">
</form>
</div>
</body>
</html>