Initial commit
This commit is contained in:
commit
084c886933
4 changed files with 110 additions and 0 deletions
19
templates/start_form.html
Normal file
19
templates/start_form.html
Normal 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>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue