This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2022_Stanislav_Mykhailenko/Lesson_7/Task 1/templates/index.html
Stanislav Mykhailenko 0437695d02
Add Lesson 7 Task 1
2023-01-08 23:50:57 +02:00

16 lines
366 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Image download</title>
</head>
<body>
<form>
<label for="url">URL: </label><br>
<input type="url" id="url" name="url"><br>
<button id="submit" type="submit">Submit</button>
</form>
<div id="response">
{{response|safe}}
</div>
</body>
</html>