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.

78 lines
3.0 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="renderer" content="webkit">
<title>学生个人主页</title>
<link rel="stylesheet" href="{{ url_for('static',filename='css/pintuer.css') }}">
<link rel="stylesheet" href="{{ url_for('static',filename='css/admin.css') }}">
<script src="{{ url_for('static',filename='js/jquery.js') }}"></script>
<script src="{{ url_for('static',filename='js/Clock.js') }}" type=text/javascript></script>
</head>
<body style="background-color:#f2f9fd;">
<div class="header bg-main">
<div class="logo margin-big-left fadein-top">
<h1><img src="{{ url_for('static',filename='images/y.jpg') }}" class="radius-circle rotate-hover" height="50" alt="" />学生个人主页</h1>
</div>
<div class="head-l">
<span id=clock style="color: white;"></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<span style="color: #00ff99; font-size: 16px;">欢迎&nbsp;&nbsp; {{ username }}</span> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a class="button button-little bg-green" href="stu_info" >个人信息</a> &nbsp;&nbsp;
<a class="button button-little bg-red" href="/" >
<span class="icon-power-off"></span> 退出登录</a> </div>
</div>
<div class="leftnav">
<div class="leftnav-title"><strong><span class="icon-list"></span>菜单列表</strong></div>
<h2><span class="icon-user"></span>基本设置</h2>
<ul>
<li><a href="pass" target="right"><span class="icon-caret-right"></span>修改密码</a></li>
<li><a href="stu_info" target="right"><span class="icon-caret-right"></span>个人资料</a></li>
</ul>
<h2><span class="icon-pencil-square-o"></span>我的评教</h2>
<ul >
<li><a href="mycourse" target="right"><span class="icon-caret-right"></span>我的评教课表</a></li>
</ul>
</div>
<script type="text/javascript">
var clock = new Clock();
clock.display(document.getElementById("clock"));
$(function(){
$(".leftnav h2").click(function(){
$(this).next().slideToggle(200);
$(this).toggleClass("on");
})
$(".leftnav ul li a").click(function(){
$("#a_leader_txt").text($(this).text());
$(".leftnav ul li a").removeClass("on");
$(this).addClass("on");
})
$(".icon-home").click(function(){
$("#a_leader_txt").text("首页");
$(".leftnav ul li a").removeClass("on");
$(this).addClass("on");
})
});
</script>
<ul class="bread">
<li><a href="info" target="right" class="icon-home"> 首页</a></li>
<li><a href="##" id="a_leader_txt">首页</a></li>
</ul>
<div class="admin">
<iframe scrolling="auto" rameborder="0" src="info" name="right" width="100%" height="100%"></iframe>
</div>
<div style="text-align:center;">
</div>
</body>
</html>