-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createContent.html
35 lines (35 loc) · 1.39 KB
/
createContent.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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8" />
<title>Uploading data</title>
<script src="./createContentScripts.js"></script>
<body>
<div>
<h1>Example Scripts</h1>
<p>Please open developer tools (in most browsers F12) to better browse the responses in the console window.</p>
<br/>
<div id="getInformationArea">
<button onclick="getClinicalProgram()">Get Programs</button>
<button onclick="getProjects()">Get Projects</button>
<button onclick="getStudies()">Get Studies</button>
<br/><br/>
<div id="resultContainer">
</div>
</div>
<hr/><br/>
<div id="areaCreateClinicalProgram_01">
<input type="text" id="01_clinicalProgramInput" placeholder="Clinical Program Name" value="">
<button onclick="createClinicalProgram()">Create Clinical Program</button>
<br/>
</div>
<div id="areaCreateProject_02">
<input type="text" id="02_clinical_programme_uid" placeholder="Clinical Program ID" value="">
<input type="text" id="02_project_number" placeholder="Project Number" value="">
<input type="text" id="02_name" placeholder="Project Name" value="">
<input type="text" id="02_description" placeholder="Project Description" value="">
<button onclick="createProject()">Create Project</button>
<br/>
</div>
</div>
</body>
</html>