-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVoteManage.aspx
35 lines (32 loc) · 1.12 KB
/
VoteManage.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="VoteManage.aspx.cs" Inherits="SMS_Council.VoteManage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="/" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
<title>投票管理 - 深圳中学议事会</title>
<link href="/favicon.ico" rel="shortcut icon" />
<link href="/css/materialize.min.css" rel="stylesheet" />
<link href="/css/general.css" rel="stylesheet" />
<script src="/js/jquery-1.11.1.min.js"></script>
<script src="/js/materialize.min.js"></script>
<% Response.Write(SMS_Council.Classes.Helper.LoadAngular("votemanage")); %>
<style>
.header {
height:100px;
overflow:hidden;
margin-bottom:20px;
}
</style>
</head>
<body>
<% Response.Write(SMS_Council.Classes.Helper.WriteMenu()); %>
<main>
<vote-manage></vote-manage>
</main>
<script>
$("#show-menu").sideNav()
</script>
</body>
</html>