30 lines
1 KiB
HTML
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>
|