You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
903 B

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<title>随机点名系统</title>
</head>
<body>
<div class="container">
<h1>随机点名系统</h1>
{% if student %}
<p>被抽中的学生: <strong>{{ student.name }}</strong> (学号: <strong>{{ student.id }}</strong>)</p>
<p>当前积分: <strong>{{ student.points }}</strong></p>
{% endif %}
<div class="button-group">
<a href="{{ url_for('call_student') }}" class="btn">抽点</a>
<a href="{{ url_for('ask_question') }}" class="btn">抽问</a>
<a href="{{ url_for('rankings') }}" class="btn">积分排名</a>
</div>
</div>
</body>
</html>