<!-- index.html --> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="/static/style.css"> | |
</head> | |
<body> | |
<main> | |
<section id="sepsis-prediction"> | |
<h2>Sepsis Prediction</h2> | |
<form action="/sepsis/predict" method="get"> | |
<label for="PRG">PRG:</label> | |
<input type="number" name="PRG" step="any" required><br> | |
<!-- Add other input fields for PL, PR, SK, TS, M11, BD2, Age, Insurance --> | |
<button type="submit">Submit</button> | |
</form> | |
<p id="sepsis-result"></p> | |
</section> | |
</main> | |
<script src="/static/script.js"></script> | |
</body> | |
</html> | |