Created
August 9, 2020 09:56
-
-
Save ksdkamesh99/1a96c2387c0086cada6f3dad4629c2d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Iris Classifier</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<h1><CENTER>Iris Classifier</CENTER></h1> | |
<form id="myform" method="POST"> | |
<input type="text" name="sl" placeholder="Enter Sepal Length in cm"><br><br> | |
<input type="text" name="sw" placeholder="Enter Sepal Width in cm"><br><br> | |
<input type="text" name="pl" placeholder="Enter Petal Length in cm"><br><br> | |
<input type="text" name="pw" placeholder="Enter Petal Width in cm"><br><br> | |
</form> | |
<button id="predict">Predict</button> | |
<h2 id="result"></h2> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment