comparison OrthancServer/Resources/Samples/WebApplications/DrawingDicomizer/index.html @ 4044:d25f4c0fa160 framework

splitting code into OrthancFramework and OrthancServer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Jun 2020 20:30:34 +0200
parents Resources/Samples/WebApplications/DrawingDicomizer/index.html@009dce4ea2f6
children
comparison
equal deleted inserted replaced
4043:6c6239aec462 4044:d25f4c0fa160
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>HTML5 Drawing Dicomizer</title>
6 <style media="screen" type="text/css">
7 canvas {
8 border: 1px inset brown;
9 }
10 </style>
11 <script src="jquery.js"></script>
12 <script src="drawing.js"></script>
13 <script src="orthanc.js"></script>
14 </head>
15 <body>
16 <canvas id="canvas" width="490" height="220"></canvas>
17 <p>
18 Patient ID: <input type="text" id="patientID"></input>
19 </p>
20 <p>
21 Patient Name: <input type="text" id="patientName" value="HELLO^WORLD"></input>
22 </p>
23 <p>
24 Study Description: <input type="text" id="studyDescription" value="My Study"></input>
25 </p>
26 <p>
27 Series Description: <input type="text" id="seriesDescription" value="My Series"></input>
28 </p>
29 <p>
30 <button id="submit">Submit</button>
31 </p>
32 </body>
33 </html>