-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectProject.html
40 lines (38 loc) · 1.09 KB
/
selectProject.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
<html>
<head>
<LINK href="css/selectProjects.css" rel="stylesheet" type="text/css">
<LINK href="css/loader.css" rel="stylesheet" type="text/css">
<LINK href="css/error.css" rel="stylesheet" type="text/css">
<LINK href="css/selectProjectsBody.css" rel="stylesheet" type="text/css">
<script src="scripts/mootools-1.2.4-core-jm.js"></script>
<script src="scripts/storyBoardLib.js"></script>
<script src="scripts/ErrorDialog.js"></script>
<script src="scripts/Loader.js"></script>
<script src="scripts/PivotalTrackerAPIClient.js"></script>
<title>Pivotal Tracker Story Board Select Project</title>
</head>
<body>
<div id="form">
<table id="optionsTable">
<tr class="optionRow">
<td class="superTitle">Pivotal Tracker Story Board</td>
</tr>
<tr class="projectsRow">
<td class="optionCell content">
<div id="projects"></div>
</td>
</tr>
<tr class="optionRow">
<td class="superTitle">Active Projects</td>
</tr>
</table>
</div>
<div id="loader">
<img id="loader_image" src="images/loader.gif"/>
</div>
<div id="error">
Error!
</div>
<script src="scripts/selectProject.js"></script>
</body>
</html>