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_6/Task 2/templates/index.html
Stanislav Mykhailenko 1ea0c35f22
Add Lesson 6 Task 2
2023-01-07 16:16:00 +02:00

24 lines
733 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Computer info</title>
</head>
<body>
<form action="/send">
<label for="cpu">CPU: </label><br>
<input type="checkbox" id="cpu" name="cpu"><br>
<label for="ram">RAM: </label><br>
<input type="checkbox" id="ram" name="ram"><br>
<label for="architecture">Architecture: </label><br>
<input type="checkbox" id="architecture" name="architecture"><br>
<label for="family">Family: </label><br>
<input type="checkbox" id="family" name="family"><br>
<button id="submit" type="submit">Submit</button>
</form>
Collected data:
<hr>
<div id="messages">
{{data|safe}}
</div>
</body>
</html>