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/show_image.html

23 lines
799 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>输入备注</title>
</head>
<body>
<h1>输入备注</h1>
<form action="/submit_remarks" method="POST">
<label for="remarks">输入备注:</label>
<textarea id="remarks" name="remarks"></textarea><br><br>
<label for="category">选择备注类型:</label>
<select id="category" name="category">
<option value="主要错误">主要错误</option>
<option value="主要错因">主要错因</option>
<option value="主要错因">批改建议</option>
<option value="其他">其它</option>
</select><br><br>
<input type="submit" value="提交备注">
</form>
<h1>题目内容</h1>
<img src="{{ image_path }}" alt="Question Image">
</body>
</html>