flickr-mail/templates/start_form.html

20 lines
487 B
HTML
Raw Normal View History

2023-09-08 01:10:09 +01:00
<!DOCTYPE html>
<html>
<head>
<title>URL Input Form</title>
</head>
<body>
<h1>Enter URLs</h1>
<form action="{{ url_for("show_message") }}">
<label for="flickr_url">Flickr URL:</label>
<input type="text" id="flickr" name="flickr" required><br><br>
<label for="wikipedia_url">Wikipedia URL:</label>
<input type="text" id="wikipedia" name="wikipedia" required><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>