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_5/Task 2/templates/index.html
Stanislav Mykhailenko 54fc772c83
Add Lesson 5 Task 2
2023-01-01 22:01:06 +02:00

16 lines
412 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculator</title>
</head>
<body>
<form action="">
<label for="result">Result: </label><br>
<input type="text" id="result" name="result" value="{{result|safe}}" disabled><br>
<label for="operation">Operation: </label><br>
<input type="text" id="operation" name="operation"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>