You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
909 B
31 lines
909 B
4 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>🛸 UFO Appearance Prediction! 👽</title>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="grid">
|
||
|
|
||
|
<div class="box">
|
||
|
|
||
|
<p>According to the number of seconds, latitude and longitude, which country is likely to have reported seeing a UFO?</p>
|
||
|
|
||
|
<form action="{{ url_for('predict')}}"method="post">
|
||
|
<input type="number" name="seconds" placeholder="Seconds" required="required" min="0" max="60" />
|
||
|
<input type="text" name="latitude" placeholder="Latitude" required="required" />
|
||
|
<input type="text" name="longitude" placeholder="Longitude" required="required" />
|
||
|
<button type="submit" class="btn">Predict country where the UFO is seen</button>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
<p>{{ prediction_text }}</p>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|