Mercurial > hg > orthanc-dicomweb
view Resources/Samples/JavaScript/index.html @ 677:a5241defb36f default tip
cleanup + fix
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Wed, 09 Oct 2024 16:04:41 +0200 |
parents | 100c20770a25 |
children |
line wrap: on
line source
<!doctype html> <html lang="us"> <head> <meta charset="utf-8" /> <title>Orthanc DICOMweb Demo</title> </head> <body> <h1>Orthanc DICOMweb Demo</h2> <h2>STOW-RS - Upload DICOM file</h2> <form id="stow"> <p> DICOM file: <input id="stow-file" type="file" name="datafile"> </p> <input type="submit"></input> </form> <h2>QIDO-RS - Search for series</h2> <form id="qido-series"> <p> Patient ID: <input type="text" name="PatientID" value="*"></input> </p> <p> Patient Name: <input type="text" name="PatientName" value="*"></input> </p> <p> Study Description: <input type="text" name="StudyDescription" value="*"></input> </p> <p> Series Description: <input type="text" name="SeriesDescription" value="*"></input> </p> <input type="submit"></input> </form> <h3>Results</h3> <ul id="qido-series-results"> </ul> <script src="jquery.min.js" type="text/javascript"></script> <script src="qido-rs.js" type="text/javascript"></script> <script src="stow-rs.js" type="text/javascript"></script> </body> </html>