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
2023-01-23 22:48:15 +02:00

30 lines
1 KiB
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="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>
<label for="ram">RAM: </label><br>
<input type="checkbox" id="ram" name="ram"><br>
<label for="os">Operating system: </label><br>
<input type="checkbox" id="os" name="os"><br>
<label for="disk">Disk usage: </label><br>
<input type="checkbox" id="disk" name="disk"><br>
<label for="serial">Serial ports: </label><br>
<input type="checkbox" id="serial" name="serial"><br>
<button id="submit" type="submit">Submit</button>
</form>
Collected data:
<hr>
<div id="messages">
{{data|safe}}
</div>
</body>
</html>