forked from brynlewis/C-CDA_Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.95 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Intelligent Software and Systems">
<title>HL7 C-CDA Viewer (Intelsoft)</title>
<script src="js/jquery-1.12.0.min.js"></script>
<script src="js/core.js"></script>
<link rel="stylesheet" type="text/css" media="all" href="css/cda.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/pure-min.css" />
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.css">
<link rel="stylesheet" href="css/pureextension.css">
<link rel="stylesheet" href="css/marketing.css">
<script src="js/packery.pkgd.min.js"></script>
<script src="js/draggabilly.pkgd.min.js"></script>
<script src="js/xslt/xslt.js"></script>
</head>
<body>
<link rel="stylesheet" href="css/grids-responsive-0.0.5.min.css">
<div class="custom-wrapper pure-g home-menu pure-menu pure-menu-fixed" style="width:100%" id="men">
<div class="pure-u-1">
<span class="pure-button viewbtn" id="inputcdabtn" id_target="inputcda" style="float:right;display:block">
<i class="fa fa-lg fa-file-code-o"></i> Input CDA Document
</span>
<a href="/"
style="float:left;font-weight:bold;font-size:1.75em;;padding-top:0.2em;padding-bottom:0.5em;text-decoration:none">
HL7 C-CDA Viewer
</a>
</div>
</div>
<div class="content-wrapper" id="content-wrapper" style="top:auto">
<div class="pure-g" style="margin-top:3em">
<div class="pure-u-1">
<div class="cdaview" id="inputcda" style="padding:1em;">
<div style="margin:0.5em">
<p id="transform" class="pure-button transform">View <i class="fa fa-angle-double-right"></i></p>
<p>Paste your C-CDA document below</p>
</div>
<textarea id="cdaxml" style="width:95%;height:20em;padding:0.25em;"></textarea>
</div>
<div class="cdaview" id="viewcda"></div>
</div>
</div>
</div>
</body>
</html>