Skip to content

Instantly share code, notes, and snippets.

@akash-ch2812
Last active September 1, 2020 13:57
Show Gist options
  • Save akash-ch2812/0d0cff145f50f5b633fb291e9f9b3a48 to your computer and use it in GitHub Desktop.
Save akash-ch2812/0d0cff145f50f5b633fb291e9f9b3a48 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home page</title>
</head>
<body>
<h1>Titanic survival prediction</h1>
<form action="{% urls 'result' %}">
{% csrf_token %}
<p>Passenger Class:</p>
<input type="text" name="pclass">
<br>
<p>Sex:</p>
<input type="text" name="sex">
<br>
<p>Age:</p>
<input type="text" name="age">
<br>
<p>Sibsp:</p>
<input type="text" name="sibsp">
<br>
<p>Parch:</p>
<input type="text" name="parch">
<br>
<p>Fare:</p>
<input type="text" name="fare">
<br>
<p>Embark Category C:</p>
<input type="text" name="embC">
<br>
<p>Embark Category Q:</p>
<input type="text" name="embQ">
<br>
<p>Embark Category S:</p>
<input type="text" name="embS">
<br>
<input type="submit" value='Get Predictions'>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment