-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
715 lines (714 loc) · 61.1 KB
/
forms.html
File metadata and controls
715 lines (714 loc) · 61.1 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
<!DOCTYPE html>
<html lang="en">
<head>
<title>Aione Framework Documentation</title>
<!-- Aione framework website, 3D websites, Grid system -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="identifier-url" content="https://aioneframework.com/" />
<meta name="title" content="Aione Framework Documentation" />
<meta name="description" content="Official documentation for Aione framework, All-in-one front end framework for designing websites and web applications and mobile applications" />
<meta name="abstract" content="Aione framework code playground to edit html code and live preview the output" />
<meta name="keywords" content="aione framework, editor, code, live, css, framework, css4, layout, playground, help" />
<meta name="author" content="OXO IT SOLUTIONS PRIVATE LIMITED" />
<meta name="revisit-after" content="10" />
<meta name="language" content="EN" />
<meta name="copyright" content="©2017 OXO IT SOLUTIONS PRIVATE LIMITED" />
<meta name="robots" content="All" />
<meta name="application-name" content="Aione Framework Documentation">
<!-- Global stylesheets -->
<link rel="stylesheet" type="text/css" href="https://cdn.aioneframework.com/assets/css/aione.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:100,300,400,600,800">
<link rel="stylesheet" type="text/css" href="assets/css/docs.css">
<link rel="stylesheet" type="text/css" href="assets/ionicons/css/ionicons.css">
<script type="text/javascript" src="https://cdn.aioneframework.com/assets/js/vendor.min.js"></script>
<script type="text/javascript" src="https://cdn.aioneframework.com/assets/js/aione.min.js"></script>
<script type="text/javascript" src="assets/js/script.js"></script>
</head>
<body>
<div id="aione_wrapper" class="aione-wrapper layout-header-left aione-layout-wide aione-theme-arcane">
<div class="wrapper">
<div id="aione_header" class="aione-header load-template"></div>
<!-- .aione-header -->
<div id="aione_main" class="aione-main fullwidth">
<div class="wrapper">
<div id="aione_pagetitle" class="aione-pagetitle">
<div class="wrapper">
<div class="aione-title">
<h3 class="aione-page-title">Forms</h3>
</div>
<!-- .aione-title -->
</div>
<!-- .wrapper -->
</div>
<!-- .aione-pagetitle -->
<div id="aione_content" class="aione-content">
<div class="wrapper">
<div id="aione_page_content" class="aione-page-content">
<div class="wrapper">
<div id="aione_page_content" class="aione-page-content">
<div class="wrapper">
<section class="ph-2p pv-3p">
<form method="post" action="https://developer.oxosolutions.com/ajit/experiments/csv-to-html-table/api.php">
<div class="aione-form-wrapper ">
<div class="aione-row">
<div id="aione_form_content" class="aione-form-content">
<div class="aione-form-border ph-1p pv-1p">
<div class="ar">
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_text_field">
<h5>Text Field</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="text_field" id="input_text_field" class="input-text-field">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_number_field">
<h5>Number Field</h5>
</label>
</div>
<div class="field field-type-number">
<input type="number" name="number_field" id="input_number_field" class="input-number-field" min="1" max="120">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_email">
<h5>Email Field</h5>
</label>
</div>
<div class="field field-type-text">
<input type="email" name="email" class="input-email" id="input_email">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_select_field">
<h5>Select Field</h5>
</label>
</div>
<div class="field field-type-select">
<select class="input_select_field browser-default " id="input_education" name="education">
<option selected="selected" value="">Graduation</option>
<option value="">Diploma</option>
<option value="">Masters</option>
</select>
</div>
</div>
</div>
</div>
<!--end of row-->
</div>
<h2 class="font-size-20 pt-1p">Example Of Aione Forms</h2>
<div class="ar">
<div class="ac l50 m50 s100">
<div class="aione-form-border ph-2p pv-2p">
<h1 class="aione-form-title font-size-23 aione-align-center"> Contact us</h1>
<div class="field-wrapper">
<div class="field-label">
<label for="input_first_name">
<h5>First Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="first_name" id="input_first_name" class="input-first-name">
</div>
</div>
<div class="field-wrapper">
<div class="field-label">
<label for="input_last_name">
<h5>Last Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="last_name" id="input_last_name" class="input-last-name">
</div>
</div>
<div class="field-wrapper">
<div class="field-label">
<label for="input_email">
<h5> Email id</h5>
</label>
</div>
<div class="field field-type-text">
<input type="email" name="email" class="input-email" id="input_email">
</div>
</div>
<div class="field-wrapper">
<div class="field-label">
<label for="input_message">
<h5>Message</h5>
</label>
</div>
<div class="field field-type-text">
<textarea name="message" class="input-message" id="input_message" rows="3" cols="100"></textarea>
</div>
</div>
<div class="field-wrapper">
<div id="field_send" class="field field-type-button">
<input type="submit" class="send" id="input_send" value="Send">
</div>
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="aione-form-border ph-2p pv-2p">
<h1 class="aione-form-title font-size-23 aione-align-center">Registration Form</h1>
<div class="field-wrapper">
<div class="field-label">
<label for="input_first_name">
<h5>First Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="first_name" id="input_first_name" class="input-first-name">
</div>
</div>
<div class="field-wrapper">
<div class="field-label">
<label for="input_last_name">
<h5>Last Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="last_name" id="input_last_name" class="input-last-name">
</div>
</div>
<div class="field-wrapper">
<div class="field-label">
<label for="input_email">
<h5> Email id</h5>
</label>
</div>
<div class="field field-type-text">
<input type="email" name="email" class="input-email" id="input_email">
</div>
</div>
<div class="field-wrapper">
<div class="field-label">
<label for="input_password">
<h5>Password</h5>
</label>
</div>
<div class="field field-type-password">
<input type="password" name="password" class="password" id="input_password">
</div>
</div>
<div class="field-wrapper">
<div id="field_send" class="field field-type-button">
<input type="submit" class="send" id="input_send" value="Send">
</div>
</div>
</div>
</div>
</div>
<!--end of row-->
<form method="post" action="https://developer.oxosolutions.com/ajit/experiments/csv-to-html-table/api.php">
<div class="aione-border p-5 mt-2p">
<div class="ar">
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_first_name">
<h5>First Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="first_name" id="input_first_name" class="input-first-name">
</div>
</div>
</div><!--end of col-->
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_last_name">
<h5>Last Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="last_name" id="input_last_name" class="input-last-name">
</div>
</div>
</div><!--end of col2-->
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_age">
<h5>Age</h5>
</label>
</div>
<div class="field field-type-number">
<input type="number" name="age" id="input_age" class="input-age" min="1" max="120">
</div>
</div>
</div><!--end of col3-->
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_date_of_birth">
<h5>DOB</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" pattern="\d{1,2}/\d{1,2}/\d{4}" name="date_of_birth" id="input_date_of_birth" class="input-date-of-birth" placeholder="01/01/1999">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_father_name">
<h5> Father Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="father_name" class="input-father-name" id="input_father_name">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_mother_name">
<h5> Mother Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="mother_name" class="input-mother-name" id="input_mother_name">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_father_mobile_number">
<h5> Father Mobile</h5>
</label>
</div>
<div class="field field-type-number">
<input type="tel" name="father_mobile_number" class="input-father-mobile-number" id="input_father_mobile_number">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_mother_mobile_number">
<h5> Mother Mobile</h5>
</label>
</div>
<div class="field field-type-number">
<input type="tel" name="mother_mobile_number" class="input-mother-mobile-number" id="input_mother_mobile_number">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_current_address">
<h5> Current Address</h5>
</label>
</div>
<div class="field field-type-address">
<textarea name="current_address" class="input-current-address" id="input_current_address" rows="3" cols="100"></textarea>
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_permanent_address">
<h5>Permanent Address</h5>
</label>
</div>
<div class="field field-type-text">
<textarea name="permanent_address" class="input-permanent-address" id="input_permanent_address" rows="3" cols="100"></textarea>
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_education">
<h5>Education</h5>
</label>
</div>
<div class="field field-type-select">
<select class="input_select_field browser-default " id="input_education" name="education">
<option selected="selected" value="">Graduation</option>
<option value="">Diploma</option>
<option value="">Masters</option>
</select>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_college_name">
<h5>College Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="college_name" class="input-college-name" id="input_college_name">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_degree_name">
<h5>Degree Name</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="degree_name" class="input-degree-name" id="input_degree_name">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_obtained_marks">
<h5> Obtained Marks</h5>
</label>
</div>
<div class="field field-type-number">
<input type="number" name="obtained_marks" class="input-obtained-marks" id="input_obtained_marks" min="0">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_total_marks">
<h5> Total Marks</h5>
</label>
</div>
<div class="field field-type-number">
<input type="number" name="total_marks" class="input-total-marks" id="input_total_marks" min="0">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_percentage">
<h5> Percentage</h5>
</label>
</div>
<div class="field field-type-number">
<input type="number" name="percentage" class="input-percentage" id="input_percentage" min="0">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_gender">
<h5> Gender</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="gender" class="input-gender" value="male" checked="checked"><span class="pl-2p pr-2p">Male</span>
<input type="radio" name="gender" class="input-gender" value="female" id="input_gender" ><span class="pl-2p pr-2p">Female</span>
<input type="radio" name="gender" class="input-gender" value="other"><span class="pl-2p pr-2p">Other</span>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_handicapped">
<h5>Handicapped</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="handicapped" class="input-handicapped" value="yes" id="input_handicapped"><span class="pl-2p pr-2p">Yes</span>
<input type="radio" name="handicapped" class="input-handicapped" value="no" checked="checked"><span class="pl-2p pr-2p">No</span>
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_category">
<h5> Category</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="category" class="input-category" value="general" id="input_category" checked="checked"><span class="pl-2p pr-2p">General</span>
<input type="radio" name="category" class="input-category" value="obc"><span class="pl-2p pr-2p">OBC</span>
<input type="radio" name="category" class="input-category" value="sc/st"><span class="pl-2p pr-2p">SC/ST</span>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_mother_tongue">
<h5>Mother Tongue</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="mother_tongue" class="input-mother-tongue" id="input_mother_tongue">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_father_occupation">
<h5>Father Occupation</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="father_occupation" id="input_father_occupation" class="input-father-occupation">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_mother_occupation">
<h5>Mother Occupation</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="mother_occupation" id="input_mother_occupation" class="input-mother-occupation">
</div>
</div>
</div>
<div class="ac l50 m50 s100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_family_annual_income">
<h5>Family Annual Income</h5>
</label>
</div>
<div class="field field-type-number">
<input type="number" name="family_annual_income" id="input_family_annual_income" class="input-family-annual-income" min="500" max="1200000">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_city">
<h5>City</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="city" id="input_city" class="input-city">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_state">
<h5>State</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="state" id="input_state" class="input-state">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_country">
<h5>Country</h5>
</label>
</div>
<div class="field field-type-text">
<input type="text" name="country" id="input_country" class="input-country">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_pincode">
<h5>Pin-code</h5>
</label>
</div>
<div class="field field-type-number">
<input type="text" placeholder="Enter Pincode" pattern="^[0-9]{6}$" name="pincode" id="input_pincode" class="input-pincode">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_religion">
<h5>Religion</h5>
</label>
</div>
<div class="field field-type-select">
<select class="input_select_field browser-default " id="input_religion" name="religion">
<option selected="selected" value="">Hinduism</option>
<option value="">Sikhism</option>
<option value="">Islam</option>
<option value="">Christians</option>
<option value="">Buddhism</option>
<option value="">Jainism</option>
</select>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_minority">
<h5> Minority</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="minority" class="input-minority" value="yes" id="input_minority"><span class="pl-2p pr-2p">Yes</span>
<input type="radio" name="minority" class="input-minority" value="no" checked="checked"><span class="pl-2p pr-2p">No</span>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_language">
<h5>Language Known</h5>
</label>
</div>
<div class="field field-type-select">
<select class="input_select_field browser-default " id="input_language" name="language">
<option selected="selected" value="">English</option>
<option value="">Hindi</option>
<option value="">Punjabi</option>
<option value="">Gujarati</option>
<option value="">Marathi</option>
<option value="">Bengali</option>
<option value="">Malayalam</option>
<option value="">Tamil</option>
<option value="">Telugu</option>
<option value="">Urdu</option>
</select>
</div>
</div>
</div>
<div class="ac l100 s100 m100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_email">
<h5> Email id</h5>
</label>
</div>
<div class="field field-type-text">
<input type="email" name="email" class="input-email" id="input_email">
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_government_employee">
<h5>Government Employee</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="government_employee" class="input-government-employee" value="yes" id="input_government_employee"><span class="pl-2p pr-2p">Yes</span>
<input type="radio" name="government_employee" class="input-government-employee" value="no" checked="checked"><span class="pl-2p pr-2p">No</span>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_working_person">
<h5>Working Person</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="working_person" class="input-working-person" value="yes" id="input_working_person" checked="checked"><span class="pl-2p pr-2p">Yes</span>
<input type="radio" name="working_person" class="input-working-person" value="no"><span class="pl-2p pr-2p">No</span>
</div>
</div>
</div>
<div class="ac l50 s100 m50">
<div class="field-wrapper">
<div class="field-label">
<label for="input_ex-service_man">
<h5> Ex-service Man</h5>
</label>
</div>
<div class="field field-type-radio">
<input type="radio" name="ex_service_man" class="input-ex-service-man" value="yes" id="input_ex-service_man" ><span class="pl-2p pr-2p">Yes</span>
<input type="radio" name="ex_service_man" class="input-ex-service-man" value="no" checked="checked"><span class="pl-2p pr-2p">No</span>
</div>
</div>
</div>
<div class="ac l190 s100 m100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_annual_income">
<h5>Annual Income</h5>
</label>
</div>
<div class="field field-type-text">
<input type="number" name="annual_income" id="input_annual_income" class="input-annual-income" min="0" max="1200000">
</div>
</div>
</div>
<div class="ac l100 s100 m100">
<div class="field-wrapper">
<div class="field-label">
<label for="input_working_address">
<h5> Working Address</h5>
</label>
</div>
<div class="field field-type-address">
<textarea name="working_address" class="input-working-address" id="input_working_address" rows="3" cols="100"></textarea>
</div>
</div>
</div>
</div><!--end of row-->
<div class="field-wrapper aione-align-center">
<div id="field_send" class="field field-type-button">
<input type="submit" class="send" id="input_send" value="Send">
</div>
</div>
</div>
</div>
</div><!--end of aione-form-content-->
</div><!--end of aione-row-->
</div><!--end of aione-form-wrapper-->
</form>
</section>
</div>
</div>
</div>
</div>
</div>
</div>
<!--end of aione content-->
<div id="aione_footer" class="aione-footer load-template"></div>
<!-- .aione-footer -->
<div id="aione_copyright" class="aione-copyright load-template"></div>
<!-- .aione-copyright -->
</div>
</div>
<!--end of aione main-->
</div>
<!--end of wrapper-->
</div>
<!--end of aione wrapper-->
</body>
</html>