-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulation.php
95 lines (90 loc) · 4.13 KB
/
simulation.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE>
<html lang="en">
<meta charset="utf-8">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>ThesesLink</title>
<link href="assets/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container contSimulation">
<a class="navbar-brand" href="#">ThesisLink</a>
<a class="btn btn-primary" href="index.php">Go to landing page</a>
</div>
</nav>
<div class="container contSimulation">
<div class="row" style="padding-top:10px; padding-bottom:15px; min-height:100%; height:100%">
<div class="col-lg-8">
<div id="mapDiv" height="550" width="100%">
<div class="goBackText" id="goBackText" style="float:left; position:absolute;">
<button type="button" class="btn btn-primary" class="alldivisionButton" style="margin-top:5px;">
<- Go Back</button> </div> <div class="list" style="margin:auto;" style="float:left;">
<center>
<h1>
<div id="nodeTitle" style="margin-top:5px;">List of AOCs</div>
</h1>
</center>
</div>
<div class="nodeTitle2" style="margin:auto;">
<center>
<font size="3px"><span id="detailedName"> </span></font>
</center>
</div>
<svg width="100%" id="map" style="height:80%; min-height:80%"></svg>
<div width="100%" id="loading" style="height:80%; min-height:80%; display:none;">
<div class="loaderdiv" style="padding-top:30%;">
<div class="loader" style="margin:auto;"></div>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="charts">
<form id="searchAoc" autocomplete="off">
<div class="input-group mb-3" style="padding-top:10px">
<input type="text" id="search" class="form-control" placeholder="Search in AOCs" aria-label="Username" aria-describedby="basic-addon1" style="margin-right:20px">
<input type="button" class="btn btn-outline-secondary" id="doSearch" value="Search" style="color:black" />
</div>
</form>
<div class="alert alert-primary"><input type="checkbox" id="multi" /> <b>Only show multidisciplinary theses</b></div>
<hr />
<h2>
<center>
<div id="category">All Divisions</div>
</center>
</h2>
<hr />
<button class="btn btn-primary" id="gobackList" style="display:none; margin:auto; margin-bottom:5px;">Go back to AOC list</button>
<div id="divCharts">
</div>
</div>
</div>
</div>
<footer class="py-5 bg-dark">
<div class="container">
<div class="row">
<div class="col-lg-1">
</div>
<div class="col-lg-2">
<p class="m-0 text-white">
<font size="5">Contact</font> <br />
Jane Cook Library<br />
New College of Florida <br />
5800 Bay Shore Road <br />
Sarasota, FL 34243 <br />
(941) 487-5000 <br />
© 2019 <br /></p>
</div>
<div class="col-lg-2">
<img src="http://dss.ncf.edu/main/user/images/g5_hydrogen/JBClogosmall_400x400.JPG?5c6f1aad" width="150" />
</div>
<div class="col-lg-4">
</div>
</div>
</div>
</footer>
</body>
<script src="js/jquery.js"></script>
<script src="js/d3.js"></script>
<script src="js/main.js"></script>
</html>