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.

137 lines
5.2 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>课程点名系统</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="static/plugins/bootstrap-4.6.2/css/bootstrap.min.css">
<style>
body {
margin: 0;
}
.header {
background-color: #343a40;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header-links a {
font-size: 30px;
color: #fff;
text-decoration: none;
padding: 0 80px;
transition: color 0.3s ease;
}
.header-links a:hover {
color: #ffcc00;
}
.left-side h2 {
margin-top: 0;
}
h1 {
font-family: 'Arial', sans-serif;
font-size: 2.5em;
color: #4a90e2;
text-align: center;
padding: 20px;
border: 2px solid #4a90e2;
border-radius: 10px;
background-color: #f0f8ff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.left-side h1 +.list-group {
margin-top: 50px;
}
.about-contact-links {
font-size: 20px;
margin-top: 200px;
}
.about-contact-links a {
color: black;
text-decoration: none;
font-weight: 300; /* 使用较轻的字体粗细 */
font-family: 'Lato', sans-serif; /* 使用 Lato 字体,比较细 */
transition: color 0.3s ease;
</style>
</head>
<body>
<div class="header">
<div class="container">
<div class="header-links">
<a href="">首页</a>
<a href="/cmes">课程信息</a>
<a href="/back">用户反馈</a>
<a href="/help">帮助中心</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-3 left-side" style="margin-top: 50px;">
<h1>课程点名系统</h1>
<div class="list-group">
<a href="/mes" class="list-group-item d-flex justify-content-between align-items-center">
<span><i class="fas fa-user"></i> 个人信息</span>
</a>
<a href="/myclass" class="list-group-item d-flex justify-content-between align-items-center">
<span><i class="fas fa-users"></i> 我的班级</span>
</a>
<a href="/rank" class="list-group-item d-flex justify-content-between align-items-center">
<span><i class="fas fa-chart-bar"></i> 积分排行</span>
</a>
</div>
<a href="/start_call" class="btn btn-primary btn-block mt-3">开始点名</a>
<img src="static/image/welcom.jpg" alt="Small Image" style="width: 340px; height: 200px; margin-top: 10px;">
<div class="about-contact-links" style="margin-top: 10px">
<a href="/us">关于我们</a><br>
<a href="/cus">联系我们</a>
</div>
</div>
<div class="col-md-9 right-side">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<a href="https://www.educoder.net/paths/qlpvrn3u" class="carousel-item active">
<img src="static/image/image1.jpg" width="300" height="650" class="d-block w-100" alt="Image 1">
</a>
<a href="https://www.fzu.edu.cn/" class="carousel-item">
<img src="static/image/image2.jpg" width="300" height="650" class="d-block w-100" alt="Image 2">
</a>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="static/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="static/plugins/bootstrap-4.6.2/js/bootstrap.bundle.min.js"></script>
</body>
</html>