Initial commit

This commit is contained in:
Edward Betts 2023-09-08 01:10:09 +01:00
commit 084c886933
4 changed files with 110 additions and 0 deletions

19
templates/start_form.html Normal file
View file

@ -0,0 +1,19 @@
<!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>