Guest User

Untitled

a guest
Nov 22nd, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. %{--include js lib for heatmap dynamically--}%
  2. <r:require modules="data_upload"/>
  3. <r:layoutResources disposition="defer"/>
  4.  
  5. <div id="analysisWidget">
  6. <h2>Variable Selection</h2>
  7.  
  8. <form id="analysisForm">
  9. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  10. <div class="row">
  11. <div class="col-sm-6">
  12. <label>Study ID:</label>
  13. <input type="text" id="studyId"/>
  14.  
  15. <label>Top Node:</label>
  16. <input type="text" id="topNode"/>
  17.  
  18. <label>Study Name:</label>
  19. <input type="text" id="studyName"/>
  20.  
  21. <label>Phenotips Address:</label>
  22. <input type="text" id="phenotipsAddress"/>
  23.  
  24. <label>Phenotips Username:</label>
  25. <input type="text" id="phenoUsername"/>
  26.  
  27. <label>Phenotips Password:</label>
  28. <input type="text" id="phenoPassword"/>
  29.  
  30.  
  31. </div>
  32. <div class="col-sm-6">
  33. <label>Patients List:</label>
  34. <div class="row">
  35. <input class="col-sm-9" type="text" id="entered_patient_id"/>
  36. <div class="col-sm-3"><input type="button" value="Add" onClick="dataUpload.add_patient()"/></div>
  37. </div>
  38. <div id="patientList">No Patients on Upload List</div>
  39. </div>
  40. </div>
  41. <div>
  42. <input type="button" value="Upload Data" onClick="dataUpload.submit_job(this.form);" class="runAnalysisBtn"/>
  43. </div>
  44. </form>
  45.  
  46. </div>
Add Comment
Please, Sign In to add comment