This repository has been archived on 2024-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mathdeptv2/工具v4/templates/index.html

30 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Flask App</title>
<style>
.checkbox-container {
margin-right: 20px; /* Adjust the value to increase or decrease the horizontal spacing */
}
</style>
</head>
<body>
<h1>Hello World</h1>
<form method="POST">
<div style="display: flex;">
<div class="checkbox-container">
<input type="checkbox" name="checkbox" value="Checkbox 1"> Checkbox 1<br>
<input type="checkbox" name="checkbox" value="Checkbox 2"> Checkbox 2<br>
<input type="checkbox" name="checkbox" value="Checkbox 3"> Checkbox 3<br>
</div>
<div>
<input type="radio" name="radiobox" value="Radiobox 1"> Radiobox 1<br>
<input type="radio" name="radiobox" value="Radiobox 2"> Radiobox 2<br>
<input type="radio" name="radiobox" value="Radiobox 3"> Radiobox 3<br>
<input type="radio" name="radiobox" value="Radiobox 4"> Radiobox 4<br>
</div>
</div>
<input type="submit" value="提交">
</form>
</body>
</html>