forked from howardpchen/capricorn
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
116 lines (98 loc) · 4.96 KB
/
index.php
File metadata and controls
116 lines (98 loc) · 4.96 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE HTML>
<!--
Capricorn - Open-source analytics tool for radiology residents.
Copyright (C) 2014 (Howard) Po-Hao Chen
This file is part of Capricorn.
Capricorn is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<?php
include "capricornLib.php";
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800" rel="stylesheet" type="text/css" />
<script src="<?php echo $URL_root; ?>js/jquery.min.js"></script>
<script src="<?php echo $URL_root; ?>js/jquery.dropotron.min.js"></script>
<script src="<?php echo $URL_root; ?>js/config.js"></script>
<script src="<?php echo $URL_root; ?>js/skel.min.js"></script>
<script src="<?php echo $URL_root; ?>js/skel-panels.min.js"></script>
<noscript>
<link rel="stylesheet" href="<?php echo $URL_root; ?>css/skel-noscript.css" />
<link rel="stylesheet" href="<?php echo $URL_root; ?>css/style.css" />
<link rel="stylesheet" href="<?php echo $URL_root; ?>css/style-desktop.css" />
</noscript>
<title>Capricorn - Progress made simple.</title>
</head>
<body class="homepage">
<!-- Header Wrapper -->
<div id="header-wrapper" >
<div class="container">
<div class="row">
<div class="12u">
<!-- Banner -->
<div id="banner">
<div class="row" style="margin-top:20%">
<div class="6u">
<a href="."><img alt="logo" src="logo.png"></a>
</div>
<div class="6u">
<form name="form1" method="post" action="checklogin.php">
<input name="myusername" placeholder="Login" class='login' type="text" id="myusername" size="10">
<input name="mypassword" placeholder="Password" class='login' type="password" id="mypassword" size="10">
<input type="submit" value="Go" name="Submit" class="login">
</form>
</div>
<div class="12u" style="margin-top:4em">
Because our radiology information system handles residents uniquely, only residents are able to use Capricorn right now. <br><a style='color:#7799ff;text-decoration:none;' href="http://capricornradiology.org/" target="_blank">What is Capricorn?</a></div>
</div>
<div class="row" style="margin-top:10%;margin-bottom:20%">
<div class="12u">
<textarea class="changelog" disabled>
5/18/2014:
- Capricorn won the SIIM 2014 Open Source Leadership Award!
- Improved overall response time.
4/30/2014:
- Corrected accounting of certain rotations and modalities (such as MSK MR) in Analysis.
- Changed the labeling of "PET" to "PET (without CT)" in some places for clarity.
- Added change log on login screen.
- Thanks for feedback, encouragements, and constructive criticisms. They're what makes this project fun, so please keep them coming.
4/28/2014:
- Spine MR and CT now have their own section, appropriately named SPINE.
- Historical averages now display correctly - used to be doubled.
- Fixed PET/CT counts.
</textarea>
<br>By accessing Capricorn, you agree to its <a href='terms.php' a style='color:#7799ff;text-decoration:none;'>Terms of Service</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Wrapper -->
<div id="footer-wrapper">
<footer id="footer" class="container">
<div class="row">
<div class="12u">
<div id="copyright">
Copyright 2014 Howard Chen | Design based on <a href="http://html5up.net/">HTML5 UP</a>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>
<body style="font-family: Arial,Helvetica,sans-serif">
</body>
</html>