Skip to content

Instantly share code, notes, and snippets.

@ksdkamesh99
Created August 9, 2020 09:56
Show Gist options
  • Save ksdkamesh99/1a96c2387c0086cada6f3dad4629c2d1 to your computer and use it in GitHub Desktop.
Save ksdkamesh99/1a96c2387c0086cada6f3dad4629c2d1 to your computer and use it in GitHub Desktop.
<!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