Spaces:
Sleeping
Sleeping
<html> | |
<head> | |
<title>Water Quality Prediction</title> | |
</head> | |
<body> | |
<h2>Enter Water Parameters</h2> | |
<form action="/predict" method="post"> | |
{% for feature in ['ph', 'Hardness', 'Solids', 'Chloramines', 'Sulfate', 'Conductivity', 'Organic_carbon', 'Trihalomethanes', 'Turbidity'] %} | |
<label for="{{ feature }}">{{ feature.replace('_', ' ').title() }}:</label><br> | |
<input type="number" step="any" id="{{ feature }}" name="{{ feature }}" required><br><br> | |
{% endfor %} | |
<input type="submit" value="Predict"> | |
</form> | |
</body> | |
</html> | |