-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUHome.html
57 lines (46 loc) · 2.55 KB
/
UHome.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ares - Main Menu</title>
<#INCLUDE filename="include_head.html">
<script>
var sessionid = '<#PARAM Name="SessionID">';
</script>
</head>
<body id="type-a">
<div id="wrap">
<div id="content-wrap">
<#INCLUDE filename="include_menu.html">
<div id="content" role="main" tabindex="-1">
<h1>Main Menu</h1>
<span style="background-color:#E6F4FF ;font-size: 110%" tabindex="0"><#STATUS class="fade"></span>
<br />
<form name="UserHome" method="post" action="ares.dll">
<input type="hidden" name="action" value="20" />
<input type="hidden" name="SessionID" value="<#PARAM name="SessionID"/>"/>
<#TABLE name="Item" class="student-table filterTable" headerText="My <#CUSTOMIZATION name='HotListName'>" LinkType="ItemInformation" LinkColumn="BothTitlesIcon" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" HotList="Yes" hotListAdd="False" hotListAddText="Add checked items to <#CUSTOMIZATION name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">
<#TABLE name="Course" id="SearchResults" class="student-table filterTable" headerText="My Courses" LinkColumn="CourseNumber" Session="Current" Role="Student" column="CourseNumber:Course" column="CourseCode:Section" column="Name:Name" column="ItemCount:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="You currently are not registered for any courses in the Ares system.<br/>To add courses to your account, <a href='<#Action action=10 form=63>'>Search Courses</a>">
<#TAGCLOUD name="Course" MaxFontSizes="5" IncludeTagCount="Yes" TagFence="No" TagType="Personal" headerText="<h2>My Tags</h2>" footerText="<br />" /><br/>
</form>
<div id="footer" role="contentinfo">
<p><#COPYRIGHT></p>
<#INCLUDE filename="include_footer.html">
</div>
</div>
</div>
</div>
<script>
window.onload = function() {
var footer = document.getElementById("footer");
var sidebar = document.getElementById("sidebar");
var content = document.getElementById("content");
var sidebarHeight = sidebar.clientHeight;
var contentHeight = content.clientHeight;
if (sidebarHeight > contentHeight) {
var heightDiff = sidebarHeight - contentHeight;
footer.setAttribute('style', 'padding-top:'+ heightDiff +'px;');
}
};
</script>
</body>
</html>