Replace kidney_prediction.html

parent de9430eb
......@@ -9,67 +9,61 @@
<form method="post" action="{{ url_for('predictKidney') }}" style="margin-left: 5%;margin-right: 5%;margin-bottom: 5%;">
<div class="form-group">
<label>Blood Pressure</label>
<input type="text" name="bp" class="form-control" />
<input type="number" step="1" name="bp" class="form-control" />
</div>
<div class="form-group">
<label>Specific Gravity</label>
<input type="text" name="sg" class="form-control" />
<input type="number" step="1" name="sg" class="form-control" />
</div>
<div class="form-group">
<label>Albumin</label>
<input type="text" name="al" class="form-control" />
</div>
<div class="form-group">
<label>Sugar</label>
<input type="text" name="su" class="form-control" />
</div>
<div class="form-group">
<label>Red Blood Cells</label>
<input type="text" name="rbc" class="form-control" />
<label for="rbc">Red Blood Cells</label>
<select class="form-control" id="rbc" name="rbc">
<option value="0">Normal</option>
<option value="1">Abnormal</option>
</select>
</div>
<div class="form-group">
<label>Blood Urea</label>
<input type="text" name="bu" class="form-control" />
<input type="number" step="1" name="bu" class="form-control" />
</div>
<div class="form-group">
<label>Serum Creatinine</label>
<input type="text" name="sc" class="form-control" />
<input type="number" step="1" name="sc" class="form-control" />
</div>
<div class="form-group">
<label>Sodium</label>
<input type="text" name="sod" class="form-control" />
<input type="number" step="1" name="sod" class="form-control" />
</div>
<div class="form-group">
<label>Pottasium</label>
<input type="text" name="pot" class="form-control" />
<input type="number" step="1" name="pot" class="form-control" />
</div>
<div class="form-group">
<label>Hemoglobin</label>
<input type="text" name="hemo" class="form-control" />
<input type="number" step="1" name="hemo" class="form-control" />
</div>
<div class="form-group">
<label>White Blood Cell Count</label>
<input type="text" name="wbcc" class="form-control" />
<input type="number" step="1" name="wbcc" class="form-control" />
</div>
<div class="form-group">
<label>Red Blood Cell Count</label>
<input type="text" name="rbcc" class="form-control" />
<input type="number" step="1" name="rbcc" class="form-control" />
</div>
<div class="form-group">
<label>Hypertension</label>
<input type="text" name="htn" class="form-control" />
<label for="htn">Hypertension</label>
<select class="form-control" id="htn" name="htn">
<option value="0">No</option>
<option value="1">Yes</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment