forked from prlbkj9i7/wzy
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.
21 lines
748 B
21 lines
748 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>医Django医院在线挂号系统-医生中心</title>
|
|
<link rel="stylesheet" href="/static/css/doctorcenter.css">
|
|
</head>
|
|
<body>
|
|
<div class="doctor-box">
|
|
<img src="/media/{{ doctor_image }}" alt="Doctor's Image" class="doctor-image">
|
|
<p class="welcome-message">欢迎,{{ doctor }} 医生!</p>
|
|
<div class="function-modules">
|
|
<div onclick="location.href='/doctorshowregistration/'" class="function-module">我的患者</div>
|
|
<!-- 更多功能模块可以在这里添加 -->
|
|
</div>
|
|
</div>
|
|
<button class="exit-button" onclick="location.href='/doctorlogin/'">退出登录</button>
|
|
</body>
|
|
</html>
|
|
|