forked from lmisuganda/ConfigurationLMIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (40 loc) · 2.08 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<title>Setup LMIS reporting for new Program</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="shortcut icon" type="image/png" href="http://terms.nicolaihagen.no/favicon.ico"/>
</head>
<body>
<main id="main">
<h1 id="main-heading"> Setup wizard for commodity ordering in a new Program </h1>
<img src="dhis2.jpg" id="dhis2logo" alt="DHIS2 logo" />
<h2>1. Enter Program name abbreviation to create new DHIS2 Program and Program Stage</h2>
<input class="input-fields" id="program-name-input" type="text" placeholder="e.g., ARV" tabinde="1" required>
<div id="sections-part">
<h2>2. Sections</h2>
<div class="large-button-with-text" id='new-section-button'>
<p>Add new section</p>
<i class="fa fa-plus" aria-hidden="true"></i>
</div>
<div id="sections">
</div>
</div>
<div class="large-button-with-text" id='send-commodities-button'>
<p>I am finished!</p>
<i class="fa fa-plus" aria-hidden="true"></i>
</div>
</main>
</body>
</html>
<script src="js/CreateProgram.js"></script>
<script src="js/CreateProgramStage.js"></script>
<script src="js/CommoditiesAndSectionsCreation.js"></script>
<script src="js/CreateDataElements.js"></script>
<script src="js/CreateProgramStageDataElements.js"></script>
<script src="js/CreateProgramStageSections.js"></script>
<script src="js/CreateGroupsAndGroupSets.js"></script>
<script src="js/app.js"></script>