Mercurial > hg > orthanc
view Resources/Samples/WebApplications/DrawingDicomizer/index.html @ 954:a91e7b4080d1 lua-scripting
merge mainline -> lua-scripting
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 25 Jun 2014 15:36:01 +0200 |
parents | 56a813a4714d |
children | 009dce4ea2f6 |
line wrap: on
line source
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>HTML5 Drawing Dicomizer</title> <style media="screen" type="text/css"> canvas { border: 1px inset brown; } </style> <script src="jquery.js"></script> <script src="drawing.js"></script> <script src="orthanc.js"></script> </head> <body> <canvas id="canvas" width="490" height="220"></canvas> <p> Patient Name: <input type="text" id="patientName"></input> </p> <p> <button id="submit">Submit</button> </p> </body> </html>