20 lines
487 B
HTML
20 lines
487 B
HTML
|
<!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>
|
||
|
|