-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.php
executable file
·49 lines (44 loc) · 1.31 KB
/
query.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
<!DOCTYPE HTML>
<html>
<head>
<?php include_once("head.php"); ?>
</head>
<body style="background-color: #00248f;" class="">
<div id="container">
<?php include_once("header.php"); ?>
<div id="wrapper" class="clearfix" >
<div class="sidebar">
<h3>Queries</h3>
<div class="sidebar_item">
<button class="text-button" type="button" id="subjects">Show all subjects</button>
<br />
<br />
<button class="text-button" type="button" id="dtypes">Query connectome data</button>
<br />
<br />
<button class="text-button" type="button" id="regions">Query segmentation data</button>
<br />
<br />
<button class="text-button" type="button" id="mhr">Query maternal heart rate data</button>
<br />
<br />
<button class="text-button" type="button" id="rat_dti">Query rat brain DTI data</button>
<br />
<br />
<button class="text-button" type="button" id="rat_struct">Query rat brain structural data</button>
</div>
<div class="sidebar_base"></div>
</div>
<div class="content">
<h1>Data from query</h1>
<div class="content_item">
<div id="stats"></div>
<div id="update"></div>
<div id="data_table"></div>
</div>
</div>
</div><!-- end of #wrapper -->
</div><!-- end of #container -->
<?php include_once("footer.php"); ?>
</body>
</html>