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.

28 lines
863 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Django医院在线挂号系统-患者中心</title>
<link rel="stylesheet" href="/static/css/patientcenter.css">
</head>
<body>
<div class="top-right">祝您早日康复,{{ patient_name }}</div>
<a href="/patientlogin/" class="logout-btn">退出登录</a>
<h1 class="main-title">患者医疗服务</h1>
<div class="service-boxes">
<div class="service-box">
<a href="/choosedepartment/">
<img src="/static/images/yuyue.jpg" alt="预约挂号">
<h3>预约挂号</h3>
</a>
</div>
<div class="service-box" style="background-color: #ec9630">
<a href="/patientshowregistration/">
<img src="/static/images/message.jpg" alt="预约信息">
<h3>预约信息</h3>
</a>
</div>
</div>
</body>
</html>