-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.html
5873 lines (4719 loc) · 228 KB
/
test.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
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
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 8 ]>
<html class="no-js ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]>
<html class="no-js ie9" lang="en"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html class="no-js" lang="en"> <!--<![endif]-->
<head lang="en">
<meta charset="UTF-8">
<meta name="description" content="Welcome to VIDA, created by the Fire Fighter Safety and Deployment Study. Login to learn how fire department resources are deployed to match your community risks.">
<meta name="author" content="Prominent Edge LLC">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>VIDA - Login</title>
<link rel="shortcut icon" href="/static/favicon.png"/>
<!--[if IE]><link rel="shortcut icon" href="/static/favicon.ico"/><![endif]-->
<link rel="stylesheet" type="text/css" href="/static/firestation/theme/assets/css/imports.css"/>
<link rel="stylesheet" type="text/css" href="/static/nvd3/nv.d3.min.css"/>
<link rel="stylesheet" type="text/css" href="/static/leaflet-fullscreen/leaflet.fullscreen.css"/>
<link rel="stylesheet" type="text/css" href="/static/firestation/theme/assets/css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="/static/firestation/theme/assets/css/style.css"/>
<link rel="stylesheet" type="text/css" href="/static/firestation/theme/assets/js/ui-select2/ui-select2.css"/>
<link rel="stylesheet" href="/static/leaflet/leaflet.css" />
<link rel="stylesheet" href="/static/firestation/firestation.css" />
<script src="/static/firestation/theme/assets/js/jquery.min.js"></script>
<script src="/static/angularjs/angular.min.js"></script>
<script src="/static/angularjs/angular-sanitize.min.js"></script>
<script src="/static/angularjs/angular-resource.min.js"></script>
<script src="/static/firestation/theme/assets/bootstrap/js/bootstrap.min.js"></script>
<script src="/static/leaflet/leaflet.js"></script>
<script src="/static/leaflet-fullscreen/Leaflet.fullscreen.min.js"></script>
<script src="/static/firestation/Leaflet.VIDAMarkers.js"></script>
<script src="/static/d3/d3.min.js"></script>
<script src="/static/nvd3/nv.d3.js"></script>
<script src="/static/firestation/js/bulletChart.js"></script>
<script src="/static/firestation/js/services/factories.js"></script>
<script src="/static/firestation/js/services/mapService.js"></script>
<script src="/static/firestation/js/controllers/home.js"></script>
<script src="/static/firestation/js/controllers/departmentDetail.js"></script>
<script src="/static/firestation/js/controllers/performanceScore.js"></script>
<script src="/static/firestation/js/directives/gauge.js"></script>
<script src="/static/firestation/js/directives/search.js"></script>
<script src="/static/firestation/js/directives/graphs.js"></script>
<script src="/static/firestation/js/app.js"></script>
<script src="/static/firestation/theme/assets/js/select2/select2.min.js"></script>
<script src="/static/firestation/theme/assets/js/ui-select2/ui-select2.min.js"></script>
<script src="/static/firestation/theme/assets/js/slider-bootstrap/bootstrap-slider.js"></script>
<script src="/static/firestation/theme/assets/js/ct-mediaSection/jquery.stellar.min.js"></script>
<script src="/static/firestation/theme/assets/js/owl/owl.carousel.min.js"></script>
<script src="/static/firestation/theme/assets/js/dependencies.js"></script>
<script src="/static/firestation/theme/assets/js/main.js"></script>
<!--[if lt IE 9]>
<script src="/static/firestation/theme/assets/bootstrap/js/html5shiv.min.js"></script>
<script src="/static/firestation/theme/assets/bootstrap/js/respond.min.js"></script>
<![endif]-->
<script src="/static/firestation/theme/assets/js/modernizr.custom.js"></script>
</head>
<body class="ct-headroom--fixedTopBar cssAnimate">
<nav class="ct-menuMobile">
<ul class="ct-menuMobile-navbar">
<li class="dropdown"><a>Home<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="index.html">Home V1 - Portal Slider</a></li>
<li><a href="index2.html">Home V2 - Portal Map</a></li>
<li><a href="index3.html">Home V3 - Portal Map (Light)</a></li>
<li><a href="index4.html">Home V4 - Real Estate Agency</a></li>
<li><a href="index5.html">Home V5 - Property Slider</a></li>
<li><a href="index6.html">Home V6 - Simple Onepager</a></li>
<li><a href="index7.html">Home V7 - Onepager Video</a></li>
<li><a href="index8.html">Home V8 - Side Map</a></li>
</ul>
</li>
<li class="dropdown"><a>Properties<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="product-single.html">Property Page V1</a></li>
<li><a href="product-single2.html">Property Page V2</a></li>
<li><a href="search-grid.html">Properties Page - Grid</a></li>
<li><a href="search-list.html">Properties Page - Listing</a></li>
<li><a href="properties.html">My Properties Page</a></li>
<li><a href="product-singleEdit.html">Front Editing - Property Page V1</a></li>
<li><a href="product-single2Edit.html">Front Editing - Property Page V2</a></li>
<li><a href="submission.html">Submission Page</a></li>
</ul>
</li>
<li class="dropdown"><a>Agents<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="agency.html">Agency Page</a></li>
<li><a href="agent.html">Agent's Profile</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="agency-edit.html">Front Editing - Agency Page</a></li>
<li><a href="agent-edit.html">Front Editing - Agent's Profile</a></li>
</ul>
</li>
<li class="dropdown"><a>Features<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="features-grid.html"><i class="fa fa-fw fa-th"></i> Grid System</a></li>
<li><a href="features-typography.html"><i class="fa fa-fw fa-font"></i> Typography</a></li>
<li><a href="features-buttons.html"><i class="fa fa-fw fa-link"></i> Buttons</a></li>
<li><a href="features-forms.html"><i class="fa fa-fw fa-align-justify"></i> Forms</a></li>
<li><a href="features-tables.html"><i class="fa fa-fw fa-table"></i> Tables</a></li>
<li><a href="features-sliders.html"><i class="fa fa-fw fa-navicon"></i> Sliders</a></li>
<li><a href="features-pricetables.html"><i class="fa fa-fw fa-money"></i> Pricing Tables</a>
</li>
<li><a href="features-iconboxes.html"><i class="fa fa-fw fa-th-large"></i> Icon Boxes</a>
</li>
<li><a href="features-personboxes.html"><i class="fa fa-fw fa-users"></i> Person Boxes</a>
</li>
<li><a href="features-counters.html"><i class="fa fa-fw fa-plus"></i> Counters</a></li>
<li><a href="features-toggable.html"><i class="fa fa-fw fa-toggle-on"></i> Toggables</a>
</li>
<li><a href="features-m-sections.html"><i class="fa fa-fw fa-play"></i> Media Sections</a>
</li>
<li><a href="features-charts.html"><i class="fa fa-fw fa-area-chart"></i> Charts</a></li>
<li><a href="features-p-bars.html"><i class="fa fa-fw fa-bars"></i> Progress Bars</a></li>
<li><a href="features-p-icons.html"><i class="fa fa-fw fa-star-half-full"></i> Progress
Icons</a></li>
<li><a href="features-lists.html"><i class="fa fa-fw fa-list"></i> Lists Simple</a></li>
<li><a href="features-lists2.html"><i class="fa fa-fw fa-list"></i> Lists Icons</a></li>
<li><a href="features-developers.html"><i class="fa fa-fw fa-code"></i> For developers</a>
</li>
</ul>
</li>
<li class="dropdown active"><a>Pages<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="pricing.html">Pricing Tables</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="policy.html">Privacy Policy</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-single.html">Blog Single</a></li>
<li><a href="registration.html">Registration</a></li>
<li class="active"><a href="login.html">Login</a></li>
<li><a href="404.html">404</a></li>
<li><a href="maintenance.html">Maintenance</a></li>
</ul>
</li>
<li class="dropdown">
<a>Gallery<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="gallery1.html">Gallery - Three Colums</a></li>
<li><a href="gallery2.html">Gallery - Four Colums</a></li>
<li><a href="gallery3.html">Gallery - Five Colums</a></li>
</ul>
</li>
<li class="dropdown"><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<form class="ct-searchFormMobile ct-u-marginBottom50" role="form">
<div class="form-group ">
<div class="ct-form--label--type1">
<div class="ct-u-displayTableVertical">
<div class="ct-u-displayTableCell">
<div class="ct-input-group-btn">
<button class="btn btn-primary">
<i class="fa fa-search"></i>
</button>
</div>
</div>
<div class="ct-u-displayTableCell text-center">
<span class="text-uppercase">Search for property</span>
</div>
</div>
</div>
<div class="ct-u-displayTableVertical ct-u-marginBottom20">
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Property id</label>
<input type="text" required class="form-control input-lg" placeholder="Any">
</div>
</div>
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Location</label>
<select class="ct-js-select ct-select-lg">
<option value="any">Any</option>
<option value="1">New York</option>
<option value="2">New Jersey</option>
<option value="3">Newark</option>
<option value="4">Philadelphia</option>
</select>
</div>
</div>
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Sub-Location</label>
<select class="ct-js-select ct-select-lg">
<option value="any">Any</option>
<option value="1">New York</option>
<option value="2">Jersey</option>
<option value="3">Newark</option>
<option value="4">Philadelphia</option>
</select>
</div>
</div>
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Property Status</label>
<select class="ct-js-select ct-select-lg">
<option value="any">Any</option>
<option value="1">Sale</option>
<option value="2">New</option>
<option value="3">Loan</option>
</select>
</div>
</div>
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Property type </label>
<select class="ct-js-select ct-select-lg">
<option value="any">Any</option>
<option value="1">Houses</option>
<option value="2">Industrial</option>
<option value="3">Retail</option>
<option value="4">Apartments</option>
</select>
</div>
</div>
</div>
<div class="ct-u-displayTableVertical ct-slider--row">
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Bedrooms</label>
<select class="ct-js-select ct-select-lg">
<option value="any">Any</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3+</option>
</select>
</div>
</div>
<div class="ct-u-displayTableCell">
<div class="ct-form--item">
<label>Bathrooms</label>
<select class="ct-js-select ct-select-lg">
<option value="any">Any</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3+</option>
</select>
</div>
</div>
<div class="ct-u-displayTableCell ct-u-marginBottom40">
<div class="ct-form--item ct-sliderAmount">
<label>Price ($)</label>
<input type="text" value="1000000" required class="form-control input-lg ct-js-slider-min ct-u-marginBottom20" placeholder="">
<input type="text" class="slider ct-js-sliderAmount" value="" data-slider-tooltip="hide" data-slider-handle="square" data-slider-min="5000" data-slider-max="5000000" data-slider-step="5000" data-slider-value="[1000000,2000000]">
<label class="pull-left">Min</label>
<label class="pull-right">Max</label>
<input type="text" value="2000000" required class="form-control input-lg ct-js-slider-max" placeholder="">
</div>
</div>
<div class="ct-u-displayTableCell">
<input type="text" class="slider ct-js-sliderTicks" value="" data-slider-handle="square" data-slider-min="0" data-slider-max="200" data-slider-step="20" data-slider-value="[60,120]"/>
<label class="text-center center-block">Area (m2)</label>
</div>
<div class="ct-u-displayTableCell">
<button type="submit" class="btn btn-warning text-capitalize pull-right">search now</button>
</div>
</div>
</div>
</form>
<div id="ct-js-wrapper" class="ct-pageWrapper">
<div class="ct-navbarMobile">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="assets/images/content/logo.png" alt="Estato"> </a>
<button type="button" class="searchForm-toggle">
<span class="sr-only">Toggle navigation</span>
<span><i class="fa fa-search"></i></span>
</button>
</div>
<div class="ct-topBar ">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="ct-panel--user ct-panel--right text-right">
<div class="ct-panel--item search-wrapper">
<form id="slide" role="form" method="get" action="/departments/">
<i class="fa fa-search"></i>
<input placeholder="Search" name="q" type="text" class="form-control input-lg ct-input--search">
<button type="submit" style="display: none"></button>
</form>
</div>
<div class="ct-panel--item ct-email">
<a href="/logout/"><i class="fa fa-user"></i> Logout</a>
</div>
<div class="ct-panel--item ct-email">
</div>
</div>
</div>
</div>
</div>
</div>
<nav class="navbar ct-navbar--hoverEffectLine" role="navigation" data-heighttopbar="40px" data-startnavbar="0">
<div class="container">
<div class="navbar-header ct-panel--navbar">
<a href="/" class="logo" rel="home"><h1>VIDA</h1></a>
</div>
<div class="collapse navbar-collapse text-uppercase">
<ul class="nav navbar-nav ct-navbar--fadeInUp">
<li class="onepage"><a href="#about">About</a></li>
<li class="onepage"><a href="#layers">Layers</a></li>
<li class="onepage"><a href="#portfolio">Map</a></li>
<li class="onepage"><a href="#whyus">People</a></li>
<li class="onepage active"><a href="/departments">Fire Departments</a></li>
</ul>
</div>
<div class="clearfix"></div>
<div class="ct-shapeBottom"></div>
</div>
</nav>
<div class="ct-site--map">
<div class="container">
<a href="/">Home</a>
<a href="/password-change/">Change Password</a>
</div>
</div>
<header class="ct-mediaSection" data-stellar-background-ratio="0.3" data-height="630" data-type="parallax" data-bg-image="assets/images/content/registration-parallax.jpg" data-bg-image-mobile="assets/images/content/registration-parallax.jpg">
<div class="ct-mediaSection-inner">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="ct-headerText--normal">
<h2 class="text-uppercase ct-fw-600 ct-u-marginBottom70">
What is your
<span class="ct-u-text--motive">SafeGrade?</span>
</h2>
</div>
<div class="ct-iconBox ct-u-marginBottom40 ct-iconBox--2col">
<div class="ct-icon text-center ct-iconContainer--circle ct-iconContainer--circleHoverLight">
<i class="fa fa-warning"></i>
</div>
<div class="ct-iconBox--description">
<span class="ct-title text-uppercase ct-fw-600">Identify Risks</span>
<span class="ct-text">Identify the socio-economic risk factors for your community.</span>
</div>
</div>
<div class="ct-iconBox ct-u-marginBottom40 ct-iconBox--2col">
<div class="ct-icon text-center ct-iconContainer--circle ct-iconContainer--circleHoverLight">
<i class="fa fa-bar-chart"></i>
</div>
<div class="ct-iconBox--description">
<span class="ct-title text-uppercase ct-fw-600">Analyze your performance.</span>
<span class="ct-text">Compare your department's response performance to similar departments.</span>
</div>
</div>
<div class="ct-iconBox ct-iconBox--2col">
<div class="ct-icon text-center ct-iconContainer--circle ct-iconContainer--circleHoverLight">
<i class="fa fa-dashboard"></i>
</div>
<div class="ct-iconBox--description">
<span class="ct-title text-uppercase ct-fw-600">Get your grade.</span>
<span class="ct-text">Learn if your performance is adequate for your community's risk level.</span>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<form role="form" class="ct-formRegister pull-right" method="post">
<input type='hidden' name='csrfmiddlewaretoken' value='EtJbOcU5QWjWaGrL7k4aZD2BHozEwVS2' />
<div class="form-group">
<div class="ct-form--label--type2">
<div class="ct-u-displayTableVertical">
<div class="ct-u-displayTableCell">
<div class="ct-input-group-btn">
<button class="btn btn-primary">
<i class="fa fa-user"></i>
</button>
</div>
</div>
<div class="ct-u-displayTableCell text-center">
<span class="text-uppercase">CHANGE YOUR PASSWORD</span>
</div>
</div>
</div>
<div class="ct-form--item ct-u-marginBottom20 form-group">
<label>Old password</label>
<input class="form-control input-lg form-error" id="id_old_password" name="old_password" type="password" />
<ul class="errorlist"><li>This field is required.</li></ul>
</div>
<div class="ct-form--item ct-u-marginBottom20 form-group">
<label>New password</label>
<input class="form-control input-lg form-error" id="id_new_password1" name="new_password1" type="password" />
<ul class="errorlist"><li>This field is required.</li></ul>
</div>
<div class="ct-form--item ct-u-marginBottom20 form-group">
<label>Confirm password</label>
<input class="form-control input-lg form-error" id="id_new_password2" name="new_password2" type="password" />
<ul class="errorlist"><li>This field is required.</li></ul>
</div>
<div class="ct-form--item">
<button type="submit" class="btn btn-warning center-block">Change password</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="ct-u-paddingBoth30 ct-js-section ct-section--inline" data-bg-color="#60a7d4">
<div class="container">
<div class="ct-u-displayTableVertical">
<div class="ct-u-displayTableCell">
<div class="ct-u-displayTableCell">
<img src="assets/images/content/logo-cta.png" alt="">
</div>
<div class="ct-u-displayTableCell">
<h4 class="text-uppercase">PURCHASE ESTATO WORDPRESS THEME NOW!</h4>
</div>
</div>
<div class="ct-u-displayTableCell">
<div class="ct-u-displayTableCell pull-right">
<a class="btn btn-default btn-transparent--border ct-u-text--white btn-hoverWhite" href="blog-single.html">Read More</a>
<a class="btn btn-dark btn-hoverWhite" href="demo/buy.php">Purchase Estato</a>
</div>
</div>
</div>
</div>
</section>
<section class="ct-u-paddingBottom60 text-center">
<div class="container">
<div class="ct-heading ct-u-marginBoth60">
<h3 class="text-uppercase">our partners</h3>
</div>
<div class="ct-js-owl" data-items="6" data-navigation="false" data-autoPlay="true" data-single="false" data-pagination="false">
<div class="item"><a href="http://geoshape.org/" target="_blank" title="GeoSHAPE">
<img width="165" height="165px" src="/static/partners/rogue_logo.png"></a></div>
</div>
</div>
</section>
<script src="/static/firestation/theme/assets/js/main.js"></script>
<footer>
<div class="ct-footer--extended ct-u-paddingBoth60">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-3">
<ul class="list-unstyled">
<li class="ct-u-marginBottom10">
<i class="fa fa-home"></i>
<span class="ct-fw-600">Address:</span><span> 1234 Street Name, San Fransisco, United States</span>
</li>
<li class="ct-u-marginBottom10">
<i class="fa fa-envelope-o"></i>
<span class="ct-fw-600">E-mail:</span><span> geoshape.org@gmail.com</span>
</li>
<li>
<i class="fa fa-fax"></i>
<span class="ct-fw-600">Fax:</span><span> 0 123 456 7890</span>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-6 col-lg-3">
<h4 class="ct-u-marginBottom30">Contact us</h4>
<ul class="list-unstyled ct-phoneNumbers ct-u-marginBottom30">
<li>
<i class="fa fa-phone"></i>
<span class="ct-fw-600">0 800 123 4567</span>
</li>
<li>
<i class="fa fa-fax"></i>
<span class="ct-fw-600">0 800 123 4562</span>
</li>
<li>
<i class="fa fa-mobile"></i>
<span class="ct-fw-600">+1 500 700 800</span>
</li>
</ul>
<ul class="ct-panel--socials ct-panel--navbar list-inline list-unstyled ct-u-marginBottom30">
<li><a href="https://github.com/ROGUE-JCTD"><div class="ct-socials ct-socials--circle"><i class="fa fa-github"></i></div></a></li>
</ul>
<div class="ct-contactList ">
<a href="#"><i class="fa fa-envelope-o"></i>info@geoshape.org</a>
<a href="#"><i class="fa fa-envelope-o"></i>contact@geoshape.org</a>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-4 ">
<h4 class="ct-u-marginBottom30">Quick links</h4>
<div class="row">
<div class="ct-links">
<div class="col-md-6">
<a class="text-capitalize" href="/">Home</a>
<a class="text-capitalize" href="/community-risk">Community Risk</a>
<a class="text-capitalize" href="/performance-score">Performance Score</a>
<a class="text-capitalize" href="#">Features</a>
<a class="text-capitalize" href="#">About Us</a>
<a class="text-capitalize" href="#">Contact Us</a>
</div>
<div class="col-md-6">
<a class="text-capitalize" href="/login/">Login</a>
<a class="text-capitalize" href="#">Register</a>
<a class="text-capitalize" href="#">Terms & Conditions</a>
<a class="text-capitalize" href="#">Privacy Policy</a>
</div>
</div>
</div>
</div>
<!--
<div class="col-sm-6 col-md-6 col-lg-3">
<h4 class="ct-u-marginBottom30">Recently Updated</h4>
<div class="ct-itemProducts--small ct-itemProducts--small-type2">
<a href="product-single.html">
<div class="ct-main-content">
<div class="ct-imageBox">
<img src="/static/firestation/theme/assets/images/content/recently-reduced-thumbnail-1.jpg" alt="">
</div>
<div class="ct-main-text">
<div class="ct-product--tilte">
9544 Umber View, Inspiration
</div>
<div class="ct-product--price">
<span>$ 650/month</span>
</div>
</div>
</div>
</a>
</div>
</div>-->
</div>
</div>
</div>
<div class="ct-postFooter ct-u-paddingBoth20">
<a href="#" class="ct-scrollUpButton ct-js-btnScrollUp">
<span class="ct-sectioButton--square">
<i class="fa fa-angle-double-up"></i>
</span>
</a>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12">
<span class="ct-copyright">© 2015 VIDA. All rights reserved. </span>
</div>
</div>
</div>
</div>
</footer>
</div>
<style type="text/css">
@media print { #djDebug {display:none;}}
</style>
<link rel="stylesheet" href="/static/debug_toolbar/css/toolbar.css" type="text/css" />
<!-- Prevent our copy of jQuery from registering as an AMD module on sites that use RequireJS. -->
<script>var _djdt_define_backup = window.define; window.define = undefined;</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script>var djdt = {jQuery: jQuery.noConflict(true)}; window.define = _djdt_define_backup;</script>
<script src="/static/debug_toolbar/js/toolbar.js"></script>
<div id="djDebug" style="display:none;" dir="ltr"
data-store-id="None" data-render-panel-url="/__debug__/render_panel/"
>
<div style="display:none;" id="djDebugToolbar">
<ul id="djDebugPanelList">
<li><a id="djHideToolBarButton" href="#" title="Hide toolbar">Hide »</a></li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtVersionsPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Versions" class="VersionsPanel">
Versions
<br /><small>Django 1.8.3</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtTimerPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Time" class="TimerPanel">
Time
<br /><small>CPU: 244.94ms (482.02ms)</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtSettingsPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Settings from <code>vida.settings.local</code>" class="SettingsPanel">
Settings
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtHeadersPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Headers" class="HeadersPanel">
Headers
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtRequestPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Request" class="RequestPanel">
Request
<br /><small>password_change</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtSQLPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="SQL queries from 1 connection" class="SQLPanel">
SQL
<br /><small>2 queries in 0.54ms</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtStaticFilesPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Static files (521 found, 0 used)" class="StaticFilesPanel">
Static files
<br /><small>0 files used</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtTemplatesPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Templates (9 rendered)" class="TemplatesPanel">
Templates
<br /><small>registration/password/password_change.html</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtCachePanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Cache calls from 1 backend" class="CachePanel">
Cache
<br /><small>2 calls in 0.03ms</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtSignalsPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Signals" class="SignalsPanel">
Signals
<br /><small>19 receivers of 12 signals</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtLoggingPanel" checked="checked" title="Disable for next and successive requests" />
<a href="#" title="Log messages" class="LoggingPanel">
Logging
<br /><small>0 messages</small>
</a>
</li>
<li class="djDebugPanelButton">
<input type="checkbox" data-cookie="djdtRedirectsPanel" title="Enable for next and successive requests" />
<div class="djdt-contentless djdt-disabled">
Intercept redirects
</div>
</li>
</ul>
</div>
<div style="display:none;" id="djDebugToolbarHandle">
<span title="Show toolbar" id="djShowToolBarButton">«</span>
</div>
<div id="VersionsPanel" class="djdt-panelContent">
<div class="djDebugPanelTitle">
<a href="" class="djDebugClose"></a>
<h3>Versions</h3>
</div>
<div class="djDebugPanelContent">
<div class="djdt-scroll">
<table>
<thead>
<tr>
<th>Name</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr class="djDebugOdd">
<td>Autocomplete_Light</td>
<td>2.2.5</td>
</tr>
<tr class="djDebugEven">
<td>Compressor</td>
<td>1.5</td>
</tr>
<tr class="djDebugOdd">
<td>Debug Toolbar</td>
<td>1.3.0</td>
</tr>
<tr class="djDebugEven">
<td>Django</td>
<td>1.8.3</td>
</tr>
<tr class="djDebugOdd">
<td>Python</td>
<td>2.7.6</td>
</tr>
<tr class="djDebugEven">
<td>Registration</td>
<td>1.2</td>
</tr>
<tr class="djDebugOdd">
<td>Storages</td>
<td>1.1.8</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="TimerPanel" class="djdt-panelContent">
<div class="djDebugPanelTitle">
<a href="" class="djDebugClose"></a>
<h3>Time</h3>
</div>
<div class="djDebugPanelContent">
<div class="djdt-scroll">
<h4>Resource usage</h4>
<table>
<colgroup>
<col style="width:20%"/>
<col/>
</colgroup>
<thead>
<tr>
<th>Resource</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr class="djDebugOdd">
<td>User CPU time</td>
<td>60.421 msec</td>
</tr>
<tr class="djDebugEven">
<td>System CPU time</td>
<td>184.518 msec</td>
</tr>
<tr class="djDebugOdd">
<td>Total CPU time</td>
<td>244.939 msec</td>
</tr>
<tr class="djDebugEven">
<td>Elapsed time</td>
<td>482.024 msec</td>
</tr>
<tr class="djDebugOdd">
<td>Context switches</td>
<td>4974 voluntary, 76 involuntary</td>
</tr>
</tbody>
</table>
<!-- This hidden div is populated and displayed by code in toolbar.timer.js -->
<div id="djDebugBrowserTiming" style="display:none">
<h4>Browser timing</h4>
<table>
<colgroup>
<col style="width:20%"/>
<col style="width:60%"/>
<col style="width:20%"/>
</colgroup>
<thead>
<tr>
<th>Timing attribute</th>
<th class="timeline">Timeline</th>
<th class="djdt-time">Milliseconds since navigation start (+length)</th>
</tr>
</thead>
<tbody id="djDebugBrowserTimingTableBody">
</tbody>
</table>
</div>
<script src="/static/debug_toolbar/js/toolbar.timer.js"></script>
</div>
</div>
</div>
<div id="SettingsPanel" class="djdt-panelContent">
<div class="djDebugPanelTitle">
<a href="" class="djDebugClose"></a>
<h3>Settings from <code>vida.settings.local</code></h3>
</div>
<div class="djDebugPanelContent">
<div class="djdt-scroll">
<table>
<thead>
<tr>
<th>Setting</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr class="djDebugOdd">
<td>ABSOLUTE_URL_OVERRIDES</td>
<td><code>{}</code></td>
</tr>
<tr class="djDebugEven">
<td>ACCOUNT_ACTIVATION_DAYS</td>
<td><code>7</code></td>
</tr>
<tr class="djDebugOdd">
<td>ADMINS</td>
<td><code>()</code></td>
</tr>
<tr class="djDebugEven">
<td>ALLOWED_HOSTS</td>
<td><code>['*']</code></td>
</tr>
<tr class="djDebugOdd">
<td>ALLOWED_INCLUDE_ROOTS</td>
<td><code>()</code></td>
</tr>
<tr class="djDebugEven">
<td>APPEND_SLASH</td>
<td><code>True</code></td>
</tr>
<tr class="djDebugOdd">
<td>AUTHENTICATION_BACKENDS</td>