forked from Project-4398/Wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm_Create.php
More file actions
250 lines (151 loc) · 11.5 KB
/
Form_Create.php
File metadata and controls
250 lines (151 loc) · 11.5 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<?php
include('header.php');
?>
<section id="main-content">
<section class="wrapper">
<!--main content start-->
<div class="bodyForm">
<div class="leftBodyForm">
<div class="formContainer">
<div class="headerFormContainer">
<p>Forms</p>
</div> <!-- end headerFormContainer -->
<div id="BodyFormContainer">
<!-- display forms by ajax -->
</div><!-- end BodyFormContainer -->
</div>
<div class="footerFormContainer">
<div class="headerFooterFormContainer">
<p>Refined your search</p>
</div>
<div class="bodyFooterFormContainer">
<div class="lineBodyFooterFormContainer">
<div class="leftLineBodyFooterFormContainer">
<p>Form Name:</p>
</div> <!-- end leftLineBodyFooterFormContainer -->
<div class="rightLineBodyFooterFormContainer">
<input type="text" id="searchFormName" placeholder="Form Name" />
</div><!-- end rightLineBodyFooterFormContainer -->
</div> <!-- end lineBodyFooterFormContainer -->
<div class="lineBodyFooterFormContainer">
<div class="leftLineBodyFooterFormContainer">
<p>Form Type:</p>
</div> <!-- end leftLineBodyFooterFormContainer -->
<div class="rightLineBodyFooterFormContainer">
<select id="searchFormType" >
<!-- Display forms with ajax -->
</select>
</div><!-- end rightLineBodyFooterFormContainer -->
</div>
<div class="lineBodyFooterFormContainer"></div>
<div class="lineBodyFooterFormContainer">
<button type="button" id="searchFormBtn">Search</button>
</div>
</div> <!-- end bodyFooterFormContainer -->
</div><!-- end footerFormContainer -->
</div><!-- end leftBodyForm -->
<div class="rightBodyForm">
<div class="formContainer">
<div class="headerFormContainer">
<p>Add new form</p>
</div> <!-- end headerFormContainer -->
<div class="BodyFormContainer">
<div class="lineBodyContainerAdd">
<input type="file" id="fileToUpload" >
</div>
<div class="lineBodyContainerAdd">
<textarea placeholder="Description" id="DescriptionForm" ></textarea>
</div>
<div class="lineBodyContainerAdd">
<p>Form type</p>
<div class="lineFormType">
<div class="LLineBodyContainer">
<select id="addFormType" >
<!-- Display forms with ajax -->
</select>
</div>
<div class="RLineBodyContainer">
<a href="" data-toggle="modal" data-target=".modalFormType">
<span class="glyphicon glyphicon-edit gray"></span>
</a>
</div>
</div> <!-- end lineFormType -->
</div>
<div class="lineBodyContainerAdd">
<button type="button" id="addFormBtn">SubmitForm</button>
</div>
</div> <!-- end BodyFormContainer -->
</div> <!-- end formContainer -->
<div class="progress" id="contProgressBar">
<div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100">
<p id="perecentageBar"></p>
</div>
</div>
</div><!-- end rightBodyForm -->
</div>
<!--main content end-->
</section>
</section>
<!-- /////////////////////////////////////////////////// -->
<!-------------- MODAL WINDOWS TO DISPLAY MESSAGES ------>
<!-- /////////////////////////////////////////////////// -->
<!-- Modal Windows to display messages -->
<div aria-hidden="true" aria-labelledby="myModalLabel" role="dialog" tabindex="-1" id="myModal3" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Wizard Alert</h4>
<a data-toggle="modal" id="modalExpiration" href="login.html#myModal3"></a>
</div>
<div class="modal-body" id="bodyAlertMessageBox">
<h4 class="modal-dialog" id="boxMessageModal"></h4>
</div>
<div class="modal-footer" id="footerModalSessionExpired">
<button data-dismiss="modal" class="btn btn-default" type="button" id="BtnExpirationModal">OK</button>
</div>
</div>
</div>
</div>
<!-- modal -->
<!-- modal windows to manage form type -->
<div class="modal fade modalFormType" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-header heightHeaderModal">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" id="closeModalBtn">×</button>
<p class="LabelModalHeader">Form Types</p>
</div>
<div class="modal-content">
<div id="displayFormType">
<!-- display Form dynamically by ajax -->
</div> <!-- end displayFormType -->
<!-- horizontal line -->
<hr>
<div class="LineAddForm">
<div class="leftLineAddForm"><input type="text" id="Form_Type_Description" placeholder="Add Type Form"/></div>
<div class="rightLineAddForm">
<a href="javascript:insertTypeForm()">
<span class="glyphicon glyphicon-upload blue"></span>
</a>
</div>
</div><!-- end lineFormType-->
</div> <!-- end modal-content -->
</div>
</div>
<!-- /////////////////////////////////////////////////// -->
<!-------------- MODAL WINDOWS TO DISPLAY LOADING ICON ------>
<!-- /////////////////////////////////////////////////// -->
<div class="modal-body" id="loading"><img src="assets/img/ajax-loader.gif" /></div>
<!-- /////////////////////////////////////////////////// -->
<!-------------- MODAL WINDOWS TO DISPLAY PDF AND DOC DOCUMENTS ------>
<!-- /////////////////////////////////////////////////// -->
<div id="ModalDialog">
<div id="boxDialog">
<a href="javascript:closeModal()">Close X</a>
<br>
<iframe src="" id="iframe"></iframe>
</div>
</div>
<?php include('include.php'); ?>
<!--script for this page-->
<script src="assets/js/Wizard_Functions/form.js"></script>