forked from RichCollinson/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReport graffiti - City of Melbourne.htm
1148 lines (852 loc) · 124 KB
/
Report graffiti - City of Melbourne.htm
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>
<!-- saved from url=(0058)https://test.services.melbourne.vic.gov.au/report/graffiti -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link type="text/css" rel="stylesheet" href="./Report graffiti - City of Melbourne_files/css"><style type="text/css">.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div{font-size:10px}
</style><style type="text/css">@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style type="text/css">.pac-container{background-color:#fff;position:absolute!important;z-index:1000;border-radius:2px;border-top:1px solid #d9d9d9;font-family:Arial,sans-serif;box-shadow:0 2px 6px rgba(0,0,0,0.3);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.pac-logo:after{content:"";padding:1px 1px 1px 0;height:16px;text-align:right;display:block;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);background-position:right;background-repeat:no-repeat;background-size:120px 14px}.hdpi.pac-logo:after{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png)}.pac-item{cursor:default;padding:0 4px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;line-height:30px;text-align:left;border-top:1px solid #e6e6e6;font-size:11px;color:#999}.pac-item:hover{background-color:#fafafa}.pac-item-selected,.pac-item-selected:hover{background-color:#ebf2fe}.pac-matched{font-weight:700}.pac-item-query{font-size:13px;padding-right:3px;color:#000}.pac-icon{width:15px;height:20px;margin-right:7px;margin-top:6px;display:inline-block;vertical-align:top;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);background-size:34px}.hdpi .pac-icon{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png)}.pac-icon-search{background-position:-1px -1px}.pac-item-selected .pac-icon-search{background-position:-18px -1px}.pac-icon-marker{background-position:-1px -161px}.pac-item-selected .pac-icon-marker{background-position:-18px -161px}.pac-placeholder{color:gray}
</style><style type="text/css">.pac-container{background-color:#fff;position:absolute!important;z-index:1000;border-radius:2px;border-top:1px solid #d9d9d9;font-family:Arial,sans-serif;box-shadow:0 2px 6px rgba(0,0,0,0.3);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.pac-logo:after{content:"";padding:1px 1px 1px 0;height:16px;text-align:right;display:block;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);background-position:right;background-repeat:no-repeat;background-size:120px 14px}.hdpi.pac-logo:after{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png)}.pac-item{cursor:default;padding:0 4px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;line-height:30px;text-align:left;border-top:1px solid #e6e6e6;font-size:11px;color:#999}.pac-item:hover{background-color:#fafafa}.pac-item-selected,.pac-item-selected:hover{background-color:#ebf2fe}.pac-matched{font-weight:700}.pac-item-query{font-size:13px;padding-right:3px;color:#000}.pac-icon{width:15px;height:20px;margin-right:7px;margin-top:6px;display:inline-block;vertical-align:top;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);background-size:34px}.hdpi .pac-icon{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png)}.pac-icon-search{background-position:-1px -1px}.pac-item-selected .pac-icon-search{background-position:-18px -1px}.pac-icon-marker{background-position:-1px -161px}.pac-item-selected .pac-icon-marker{background-position:-18px -161px}.pac-placeholder{color:gray}
</style><style type="text/css">.pac-container{background-color:#fff;position:absolute!important;z-index:1000;border-radius:2px;border-top:1px solid #d9d9d9;font-family:Arial,sans-serif;box-shadow:0 2px 6px rgba(0,0,0,0.3);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.pac-logo:after{content:"";padding:1px 1px 1px 0;height:16px;text-align:right;display:block;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);background-position:right;background-repeat:no-repeat;background-size:120px 14px}.hdpi.pac-logo:after{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png)}.pac-item{cursor:default;padding:0 4px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;line-height:30px;text-align:left;border-top:1px solid #e6e6e6;font-size:11px;color:#999}.pac-item:hover{background-color:#fafafa}.pac-item-selected,.pac-item-selected:hover{background-color:#ebf2fe}.pac-matched{font-weight:700}.pac-item-query{font-size:13px;padding-right:3px;color:#000}.pac-icon{width:15px;height:20px;margin-right:7px;margin-top:6px;display:inline-block;vertical-align:top;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);background-size:34px}.hdpi .pac-icon{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png)}.pac-icon-search{background-position:-1px -1px}.pac-item-selected .pac-icon-search{background-position:-18px -1px}.pac-icon-marker{background-position:-1px -161px}.pac-item-selected .pac-icon-marker{background-position:-18px -161px}.pac-placeholder{color:gray}
</style><style type="text/css">.gm-style-pbc{transition:opacity ease-in-out;background-color:rgba(0,0,0,0.45);text-align:center}.gm-style-pbt{font-size:22px;color:white;font-family:Roboto,Arial,sans-serif;position:relative;margin:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<script async="" src="./Report graffiti - City of Melbourne_files/gtm.js"></script><script>
var gtmSettings = {
processId: '2a4e4d0b-80be-4a2e-8eed-d64c9556c5f1',
group: 'Report graffiti'
};
</script>
<script>
var dataLayer = [{
'environment': 'UAT',
'pageType': 'DCIForm'
}];
</script>
<!-- Google Tag Manager -->
<script>
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NPBB5Z');</script>
<!-- End Google Tag Manager -->
<link rel="icon" href="https://test.services.melbourne.vic.gov.au/favicon.ico?v=2" type="image/x-icon">
<link rel="shortcut icon" href="https://test.services.melbourne.vic.gov.au/favicon.ico?v=2" type="image/x-icon">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="https://test.services.melbourne.vic.gov.au/apple-touch-icon-precomposed.png">
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="https://test.services.melbourne.vic.gov.au/android-icon.png">
<title>Report graffiti - City of Melbourne</title>
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/bootstrap.min.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/fonts.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/font-awesome.min.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.dropdown.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.fileinput.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.radiobuttons.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.checkbox.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.checkboxes.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.selectspinner.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.wizard.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/jquery.addclear.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.report.common.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/site.css">
<link rel="stylesheet" href="./Report graffiti - City of Melbourne_files/dci.report.graffiti.css">
<script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/common.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/util.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/map.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/poly.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/marker.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/geocoder.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/controls.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/places_impl.js"></script><style type="text/css">.gm-style {
font: 400 11px Roboto, Arial, sans-serif;
text-decoration: none;
}
.gm-style img { max-width: none; }</style><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/onion.js"></script><script type="text/javascript" charset="UTF-8" src="./Report graffiti - City of Melbourne_files/stats.js"></script></head>
<body class="report-graffiti">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NPBB5Z"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="NonFullscreen" style="display: block;">
<header>
<div class="utility-bar hidden-xs">
</div>
<div class="logo-bar">
<div class="container">
<a href="http://www.melbourne.vic.gov.au/" class="gtm-no-interaction">
<img src="./Report graffiti - City of Melbourne_files/com-mobilelogo.svg" alt="City of Melbourne" class="logo visible-xs">
<img src="./Report graffiti - City of Melbourne_files/com-masterlogo.svg" alt="City of Melbourne" class="logo hidden-xs">
</a>
</div>
</div>
</header>
<div class="body-content-wrapper">
<div class="container body-content">
<div class="page-title">Report graffiti</div>
<form class="steps-wizard" method="post">
<input id="SelectedLocationMethod" type="hidden" name="SelectedLocationMethod" value="gps">
<input id="Latitude" type="hidden" data-val="true" data-val-number="The field Latitude must be a number." data-val-required="The Latitude field is required." name="Latitude" value="-37.815">
<input id="Longitude" type="hidden" data-val="true" data-val-number="The field Longitude must be a number." data-val-required="The Longitude field is required." name="Longitude" value="144.96669999999995">
<input id="StreetAddress" type="hidden" name="StreetAddress" value="100 Swanston St, Melbourne VIC 3000, Australia">
<input id="premise" type="hidden" value="">
<input id="subpremise" type="hidden" name="UnitNumber" value="">
<input id="street_number" type="hidden" name="StreetNumber" value="100">
<input id="route" type="hidden" name="StreetName" value="Swanston Street">
<input id="locality" type="hidden" name="Suburb" value="Melbourne">
<input id="administrative_area_level_1" type="hidden" name="State" value="VIC">
<input id="postal_code" type="hidden" name="Postcode" value="3000">
<input id="SelectedFeature" type="hidden" name="SelectedFeature" value="">
<input id="NearestFeatureDetails" type="hidden" name="NearestFeatureDetails" value="">
<h2 class="sr-only">Location</h2>
<section id="LocationStep" class="container wizard-step wizard-step-first " data-gtm-step-name="Location" data-gtm-step-number="1" data-gtm-sub-step-number="1.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="5"><span class="step current">1</span><span class="step future">2</span><span class="step future">3</span><span class="step future">4</span><span class="step future">5</span><span class="step future">6</span></div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Where is the graffiti?
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<!-- Location method. -->
<section class="location-sub-step" id="LocationMethod" data-gtm-step-name="Location" data-gtm-step-number="1" data-gtm-sub-step-number="1.0" style="display: none;">
<div class="label-style">
Select your preferred method to enter a location <span class="book-weight">(required)</span>
</div>
<button type="button" id="LocationMethodShowMap">Find on map</button>
<label for="LocationMethodAddressTextBox">
Or, type an address
<div class="addclear-container"><input type="text" id="LocationMethodAddressTextBox" style="padding-right: 31px;" placeholder="Enter a location" autocomplete="off"><a href="https://test.services.melbourne.vic.gov.au/report/graffiti#clear" role="button" title="Clear text" class="addclear" style=""><span class="sr-only">Clear text</span></a></div>
<span class="sr-only">Type to filter then select from the list below</span>
</label>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-next wizard-button-next-full-width location-confirm-button" id="LocationMethodConfirm">Next</button>
</div>
</section>
<!-- Location confirm. -->
<section class="location-sub-step" id="LocationConfirm" data-gtm-step-name="Location confirm" data-gtm-step-number="1" data-gtm-sub-step-number="1.3" style="display: block;">
<div id="LocationConfirmTypedAddressReadOnlyContainer" class="location-confirm-address-container" style="display: none;">
<span class="label-style">Address provided:</span>
<button type="button" class="location-edit-button gtm-interaction-whitebutton" id="LocationConfirmTypedAddressEdit">Edit</button>
<div id="LocationConfirmTypedAddressReadOnly">100 Swanston St, Melbourne VIC 3000, Australia</div>
</div>
<div id="LocationConfirmTypedAddressTextBoxContainer" class="location-confirm-address-container" style="display: none;">
<label for="LocationConfirmTypedAddressTextBox">
Address:
<div class="addclear-container"><input type="text" id="LocationConfirmTypedAddressTextBox" style="padding-right: 31px;" placeholder="Enter a location" autocomplete="off"><a href="https://test.services.melbourne.vic.gov.au/report/graffiti#clear" role="button" title="Clear text" class="addclear" style=""><span class="sr-only">Clear text</span></a></div>
</label>
</div>
<div id="LocationConfirmMapContainer" class="location-confirm-address-container">
<span class="label-style">Location provided:</span>
<button type="button" class="location-edit-button gtm-interaction-whitebutton" id="LocationConfirmMapEdit">Edit</button>
<div id="LocationConfirmMapCanvas" style="position: relative; overflow: hidden;"><div style="height: 100%; width: 100%; position: absolute; top: 0px; left: 0px; background-color: rgb(229, 227, 223);"><div class="gm-style" style="position: absolute; z-index: 0; left: 0px; top: 0px; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px;"><div tabindex="0" style="position: absolute; z-index: 0; left: 0px; top: 0px; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; cursor: url("https://maps.gstatic.com/mapfiles/openhand_8_8.cur"), default; touch-action: pan-x pan-y;"><div style="z-index: 1; position: absolute; left: 50%; top: 50%; transform: translate(0px, 0px);"><div style="position: absolute; left: 0px; top: 0px; z-index: 100; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; z-index: 1; transform: matrix(1, 0, 0, 1, -136, -207);"><div style="position: absolute; left: 0px; top: 0px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div><div style="position: absolute; left: 0px; top: 256px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div><div style="position: absolute; left: -256px; top: 256px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div><div style="position: absolute; left: -256px; top: 0px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div><div style="position: absolute; left: 256px; top: 0px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div><div style="position: absolute; left: 256px; top: 256px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 101; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 102; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 103; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: -1;"><div style="position: absolute; z-index: 1; transform: matrix(1, 0, 0, 1, -136, -207);"><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 0px; top: 0px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 0px; top: 256px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -256px; top: 256px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -256px; top: 0px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 256px; top: 0px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 256px; top: 256px;"></div></div></div><div style="width: 24px; height: 40px; overflow: hidden; position: absolute; left: -11px; top: -37px; z-index: 1000001;"><img alt="" src="./Report graffiti - City of Melbourne_files/loc_pin.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 24px; height: 40px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; z-index: 1; transform: matrix(1, 0, 0, 1, -136, -207);"><div style="position: absolute; left: 0px; top: 0px; width: 256px; height: 256px;"><img draggable="false" alt="" src="./Report graffiti - City of Melbourne_files/vt" style="width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div><div style="position: absolute; left: 0px; top: 256px; width: 256px; height: 256px;"><img draggable="false" alt="" src="./Report graffiti - City of Melbourne_files/vt(1)" style="width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div><div style="position: absolute; left: -256px; top: 256px; width: 256px; height: 256px;"><img draggable="false" alt="" src="./Report graffiti - City of Melbourne_files/vt(2)" style="width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div><div style="position: absolute; left: -256px; top: 0px; width: 256px; height: 256px;"><img draggable="false" alt="" src="./Report graffiti - City of Melbourne_files/vt(3)" style="width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div><div style="position: absolute; left: 256px; top: 0px; width: 256px; height: 256px;"><img draggable="false" alt="" src="./Report graffiti - City of Melbourne_files/vt(4)" style="width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div><div style="position: absolute; left: 256px; top: 256px; width: 256px; height: 256px;"><img draggable="false" alt="" src="./Report graffiti - City of Melbourne_files/vt(5)" style="width: 256px; height: 256px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div></div></div></div><div class="gm-style-pbc" style="z-index: 2; position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px; opacity: 0;"><p class="gm-style-pbt"></p></div><div style="z-index: 3; position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px; touch-action: pan-x pan-y;"><div style="z-index: 4; position: absolute; left: 50%; top: 50%; transform: translate(0px, 0px);"><div style="position: absolute; left: 0px; top: 0px; z-index: 104; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 105; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 106; width: 100%;"><div class="gmnoprint" title="" style="width: 24px; height: 40px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; touch-action: none; left: -11px; top: -37px; z-index: 1000001;"><img alt="" src="./Report graffiti - City of Melbourne_files/loc_pin.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 24px; height: 40px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 107; width: 100%;"></div></div></div></div><iframe frameborder="0" style="z-index: -1; position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; border: none;" src="./Report graffiti - City of Melbourne_files/saved_resource.html"></iframe><div style="margin-left: 5px; margin-right: 5px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;"><a target="_blank" rel="noopener" href="https://maps.google.com/maps?ll=-37.815,144.9667&z=18&t=m&hl=en-GB&gl=US&mapclient=apiv3" title="Click to see this area on Google Maps" style="position: static; overflow: visible; float: none; display: inline;"><div style="width: 66px; height: 26px; cursor: pointer;"><img alt="" src="./Report graffiti - City of Melbourne_files/google_white5.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 66px; height: 26px; user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></a></div><div style="background-color: white; padding: 15px 21px; border: 1px solid rgb(171, 171, 171); font-family: Roboto, Arial, sans-serif; color: rgb(34, 34, 34); box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; z-index: 10000002; display: none; width: 256px; height: 58px; position: absolute; left: 28px; top: 5px;"><div style="padding: 0px 0px 10px; font-size: 16px;">Map Data</div><div style="font-size: 13px;">Map data ©2018 Google</div><div style="width: 13px; height: 13px; overflow: hidden; position: absolute; opacity: 0.7; right: 12px; top: 12px; z-index: 10000; cursor: pointer;"><img alt="" src="./Report graffiti - City of Melbourne_files/mapcnt6.png" draggable="false" style="position: absolute; left: -2px; top: -336px; width: 59px; height: 492px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div></div><div class="gmnoprint" style="z-index: 1000001; position: absolute; right: 166px; bottom: 0px; width: 121px;"><div draggable="false" class="gm-style-cc" style="user-select: none; height: 14px; line-height: 14px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;"><a style="text-decoration: none; cursor: pointer; display: none;">Map Data</a><span>Map data ©2018 Google</span></div></div></div><div class="gmnoscreen" style="position: absolute; right: 0px; bottom: 0px;"><div style="font-family: Roboto, Arial, sans-serif; font-size: 11px; color: rgb(68, 68, 68); direction: ltr; text-align: right; background-color: rgb(245, 245, 245);">Map data ©2018 Google</div></div><div class="gmnoprint gm-style-cc" draggable="false" style="z-index: 1000001; user-select: none; height: 14px; line-height: 14px; position: absolute; right: 95px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;"><a href="https://www.google.com/intl/en-GB_US/help/terms_maps.html" target="_blank" rel="noopener" style="text-decoration: none; cursor: pointer; color: rgb(68, 68, 68);">Terms of Use</a></div></div><button draggable="false" title="Toggle fullscreen view" aria-label="Toggle fullscreen view" type="button" style="background: none rgb(255, 255, 255); border: 0px; margin: 10px 14px; padding: 0px; position: absolute; cursor: pointer; user-select: none; width: 25px; height: 25px; overflow: hidden; display: none; top: 0px; right: 0px;"><img alt="" src="./Report graffiti - City of Melbourne_files/sv9.png" draggable="false" class="gm-fullscreen-control" style="position: absolute; left: -52px; top: -86px; width: 164px; height: 175px; user-select: none; border: 0px; padding: 0px; margin: 0px;"></button><div draggable="false" class="gm-style-cc" style="user-select: none; height: 14px; line-height: 14px; position: absolute; right: 0px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right; vertical-align: middle; display: inline-block;"><a target="_blank" rel="noopener" title="Report errors in the road map or imagery to Google" href="https://www.google.com/maps/@-37.815,144.9667,18z/data=!10m1!1e1!12b1?source=apiv3&rapsrc=apiv3" style="font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); text-decoration: none; position: relative;">Report a map error</a></div></div></div></div></div>
<div id="LocationConfirmFeatureLocation"></div>
</div>
<label>
Please describe any notable landmarks, features or objects nearby
<span class="input-validation-container">
<textarea id="LocationNotes" class="dci-textinput" placeholder="" data-val-required="" data-val-length-min="" data-val-length-max="255" data-val-length="Cannot exceed 255 characters" data-val-email="" data-val-either="" data-val-either-group="" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="" data-val-required-if-value="" data-val-required-if="" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="Please describe any notable landmarks, features or objects nearby" data-prepopulate-property="" name="LocationNotes.Value"></textarea>
</span>
</label>
<div class="wizard-buttons-container">
<button type="button" id="LocationConfirmBack" class="wizard-button wizard-button-previous gtm-interaction-greybutton">Back</button>
<button type="button" class="wizard-button wizard-button-next location-confirm-button navigation-button" id="LocationConfirmConfirm" data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Confirm</button>
</div>
</section>
<section class="location-sub-step" id="OutsideBoundaryContainer" tabindex="0" data-gtm-step-name="Location outside boundary" data-gtm-step-number="1" data-gtm-sub-step-number="1.2" style="display: none;">
<p>Sorry, the location chosen is outside the City of Melbourne area, so we aren't able to fix this issue.</p>
<p><i class="fa fa-external-link"></i> <a href="https://knowyourcouncil.vic.gov.au/councils#map" target="_blank">Follow this link</a> to find the appropriate council.</p>
<a role="button" href="https://test.services.melbourne.vic.gov.au/report/graffiti#OutsideBoundaryContainer" id="CloseOutsideBoundaryContainer">Close to return</a>
</section>
</div>
</section>
<h2 class="sr-only">Photos</h2>
<section id="PhotosStep" class="container wizard-step photos-step" data-gtm-step-name="Photos" data-gtm-step-number="2" data-gtm-sub-step-number="2.0" style="display: block;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="4"><a href="javascript:void(0);" class="step past gtm-no-interaction">1</a><span class="step current">2</span><span class="step future">3</span><span class="step future">4</span><span class="step future">5</span><span class="step future">6</span></div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
What does the graffiti look like?
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<h2 class="page-sub-heading">
Take or upload up to 4 photos
</h2>
<div class="content-column-inset">
<div class="dci-fileinputs-row">
<div class="dci-fileinput pull-left" data-empty-text="Please provide a close up" data-attached-text="Photo attached" data-default-thumbnail-source=" /images/dci-fileupload-thumbnail.png" data-attached-thumbnail-source="/images/doc_attachment_confirmed.png" data-thumbnail-class="photo1-thumbnail" data-max-width="1000" data-max-height="1000" data-async-attachment-mode="False" data-async-upload-url="">
<label for="Photo1">
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo1-thumbnail" alt="Photo 1 thumbnail">
</span>
<span class="dci-fileinput-status">
</span>
<span class="dci-fileinput-label">Please provide a close up</span>
<input id="Photo1" type="file" accept="image/*" data-max-mb="5" data-val-size="Photos over 5 MB" data-allowed-extensions=".jpg|.jpeg|.png|.gif" data-val-extension="Wrong file type" data-friendly-label="Please provide a close up">
</label>
<input type="hidden" class="dci-fileinput-compressed" name="Photo1Compressed">
</div>
<div class="dci-fileinput pull-right" data-empty-text="Please provide a wider angle" data-attached-text="Photo attached" data-default-thumbnail-source=" /images/dci-fileupload-thumbnail.png" data-attached-thumbnail-source="/images/doc_attachment_confirmed.png" data-thumbnail-class="photo2-thumbnail" data-max-width="1000" data-max-height="1000" data-async-attachment-mode="False" data-async-upload-url="">
<label for="Photo2">
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo2-thumbnail" alt="Photo 2 thumbnail">
</span>
<span class="dci-fileinput-status">
</span>
<span class="dci-fileinput-label">Please provide a wider angle</span>
<input id="Photo2" type="file" accept="image/*" data-max-mb="5" data-val-size="Photos over 5 MB" data-allowed-extensions=".jpg|.jpeg|.png|.gif" data-val-extension="Wrong file type" data-friendly-label="Please provide a wider angle">
</label>
<input type="hidden" class="dci-fileinput-compressed" name="Photo2Compressed">
</div>
</div>
<div class="dci-fileinputs-row">
<div class="dci-fileinput pull-left" data-empty-text="Please provide a photo" data-attached-text="Photo attached" data-default-thumbnail-source=" /images/dci-fileupload-thumbnail.png" data-attached-thumbnail-source="/images/doc_attachment_confirmed.png" data-thumbnail-class="photo3-thumbnail" data-max-width="1000" data-max-height="1000" data-async-attachment-mode="False" data-async-upload-url="">
<label for="Photo3">
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo3-thumbnail" alt="Photo 3 thumbnail">
</span>
<span class="dci-fileinput-status">
</span>
<span class="dci-fileinput-label">Please provide a photo</span>
<input id="Photo3" type="file" accept="image/*" data-max-mb="5" data-val-size="Photos over 5 MB" data-allowed-extensions=".jpg|.jpeg|.png|.gif" data-val-extension="Wrong file type" data-friendly-label="Please provide a photo">
</label>
<input type="hidden" class="dci-fileinput-compressed" name="Photo3Compressed">
</div>
<div class="dci-fileinput pull-right" data-empty-text="Please provide a photo" data-attached-text="Photo attached" data-default-thumbnail-source=" /images/dci-fileupload-thumbnail.png" data-attached-thumbnail-source="/images/doc_attachment_confirmed.png" data-thumbnail-class="photo4-thumbnail" data-max-width="1000" data-max-height="1000" data-async-attachment-mode="False" data-async-upload-url="">
<label for="Photo4">
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo4-thumbnail" alt="Photo 4 thumbnail">
</span>
<span class="dci-fileinput-status">
</span>
<span class="dci-fileinput-label">Please provide a photo</span>
<input id="Photo4" type="file" accept="image/*" data-max-mb="5" data-val-size="Photos over 5 MB" data-allowed-extensions=".jpg|.jpeg|.png|.gif" data-val-extension="Wrong file type" data-friendly-label="Please provide a photo">
</label>
<input type="hidden" class="dci-fileinput-compressed" name="Photo4Compressed">
</div>
</div>
<img src="https://test.services.melbourne.vic.gov.au/report/graffiti" id="FileInputFullSize" alt="Original full size image">
<canvas id="FileInputCanvas"></canvas>
<div class="clear">
</div>
<div id="FileInputsErrorSummary" data-val-size1="The photo is too large and exceeds 5 MB. Please ensure combined attachments are below 20 MB." data-val-size2="The photos exceed 5 MB and are too large. Please ensure combined attachments are below 20 MB." data-val-extension1="The photo is not the correct file type. Please ensure attachments are either .JPG, .JPEG, .PNG or .GIF." data-val-extension2="The photos are not the correct file type. Please ensure attachments are either .JPG, .JPEG, .PNG or .GIF."></div>
</div>
<div class="content-column">
<a class="help-trigger collapsed" role="button" data-toggle="collapse" href="https://test.services.melbourne.vic.gov.au/report/graffiti#Help989c78fd12044d1cb942c2f5c2af6a0f" aria-expanded="false" aria-controls="Help989c78fd12044d1cb942c2f5c2af6a0f">
What makes a helpful photo?
</a>
<div id="Help989c78fd12044d1cb942c2f5c2af6a0f" class="help-content collapse">
<p>Good photos may help us remove the graffiti sooner, as we can prepare for the job in advance.</p>
<p><strong>What does a good close-up photo show?</strong>
</p><ul>
<li>What material the graffiti is on</li>
<li>The type of graffiti e.g. paint, scratches, stickers.</li>
</ul>
<p></p>
<p><strong>What does a good distance photo show?</strong>
</p><ul>
<li>Where the graffiti is in relation to other objects or features e.g. roads, signs, landmarks</li>
<li>How high the graffiti is off the ground</li>
<li>The size of the affected area</li>
<li>Any access issues</li>
</ul>
<p></p>
<p><strong>Please avoid including faces or identifiers (e.g. vehicle registrations) in your photo.</strong></p>
<div>
<a role="button" class="collapse-closer" data-toggle="collapse" href="https://test.services.melbourne.vic.gov.au/report/graffiti#Help989c78fd12044d1cb942c2f5c2af6a0f" aria-expanded="true" aria-controls="Help989c78fd12044d1cb942c2f5c2af6a0f">Close</a>
</div>
</div>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-next navigation-button " data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-validation="true" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Next</button>
</div>
</section>
<h2 class="sr-only">More details</h2>
<section id="MoreDetailsStep" class="container wizard-step " data-gtm-step-name="More details" data-gtm-step-number="3" data-gtm-sub-step-number="3.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="3">
</div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Tell us more
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<div>
<fieldset id="WhereIsTheGraffiti" class="dci-radiobuttons " data-val-required="Please select an option" data-friendly-label="Where is the graffiti?">
<legend>
Where is the graffiti? <span class="book-weight">(required)</span>
</legend>
<div class="radio-button ">
<input id="WhereIsTheGraffitiA" type="radio" value="A" name="WhereIsTheGraffiti.Value">
<label for="WhereIsTheGraffitiA">
On your property
</label>
</div>
<div class="radio-button ">
<input id="WhereIsTheGraffitiB" type="radio" value="B" name="WhereIsTheGraffiti.Value">
<label for="WhereIsTheGraffitiB">
On someone else's property
</label>
</div>
<div class="radio-button ">
<input id="WhereIsTheGraffitiC" type="radio" value="C" name="WhereIsTheGraffiti.Value">
<label for="WhereIsTheGraffitiC">
In a park
</label>
</div>
<div class="radio-button ">
<input id="WhereIsTheGraffitiD" type="radio" value="D" name="WhereIsTheGraffiti.Value">
<label for="WhereIsTheGraffitiD">
On the street
</label>
</div>
</fieldset>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-next navigation-button " data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-validation="true" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Next</button>
</div>
</section>
<h2 class="sr-only">Graffiti on property</h2>
<section id="GraffitiOnPropertyStep" class="container wizard-step " data-gtm-step-name="Graffiti on property" data-gtm-step-number="4" data-gtm-sub-step-number="4.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="2">
</div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Tell us more
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<div>
<fieldset id="GraffitiOnProperty" class="dci-radiobuttons " data-val-required="Please select an option" data-friendly-label="What's the graffiti on?">
<legend>
What's the graffiti on? <span class="book-weight">(required)</span>
</legend>
<div class="radio-button ">
<input id="GraffitiOnPropertyA" type="radio" value="A" name="GraffitiOnProperty.Value">
<label for="GraffitiOnPropertyA">
A property wall
</label>
</div>
<div class="radio-button ">
<input id="GraffitiOnPropertyB" type="radio" value="B" name="GraffitiOnProperty.Value">
<label for="GraffitiOnPropertyB">
Fence
</label>
</div>
<div class="radio-button ">
<input id="GraffitiOnPropertyC" type="radio" value="C" name="GraffitiOnProperty.Value">
<label for="GraffitiOnPropertyC">
Garage door
</label>
</div>
</fieldset>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-next navigation-button " data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-validation="true" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Next</button>
</div>
</section>
<h2 class="sr-only">Graffiti in park</h2>
<section id="GraffitiInParkStep" class="container wizard-step " data-gtm-step-name="Graffiti in park" data-gtm-step-number="5" data-gtm-sub-step-number="5.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="2">
</div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Tell us more
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<div>
<fieldset id="GraffitiInPark" class="dci-radiobuttons " data-val-required="Please select an option" data-friendly-label="What's the graffiti on?">
<legend>
What's the graffiti on? <span class="book-weight">(required)</span>
</legend>
<div class="radio-button ">
<input id="GraffitiInParkA" type="radio" value="A" name="GraffitiInPark.Value">
<label for="GraffitiInParkA">
Playground equipment
</label>
</div>
<div class="radio-button ">
<input id="GraffitiInParkB" type="radio" value="B" name="GraffitiInPark.Value">
<label for="GraffitiInParkB">
Park furniture
</label>
</div>
<div class="radio-button ">
<input id="GraffitiInParkC" type="radio" value="C" name="GraffitiInPark.Value">
<label for="GraffitiInParkC">
Toilet block
</label>
</div>
<div class="radio-button ">
<input id="GraffitiInParkD" type="radio" value="D" name="GraffitiInPark.Value">
<label for="GraffitiInParkD">
Tree
</label>
</div>
<div class="radio-button ">
<input id="GraffitiInParkE" type="radio" value="E" name="GraffitiInPark.Value">
<label for="GraffitiInParkE">
Tree possum guard
</label>
</div>
<div class="radio-button ">
<input id="GraffitiInParkOther" type="radio" value="Other" name="GraffitiInPark.Value">
<label for="GraffitiInParkOther">
Other
</label>
</div>
</fieldset>
</div>
<div id="OtherTypeContainerPark">
<label>
What is the graffiti on? <span class="book-weight">(required)</span>
<span class="input-validation-container">
<textarea id="WhatOnPark" class="dci-textinput has-placeholder" placeholder="For example; a wall, a tree, a bench" data-val-required="Please provide a description" data-val-length-min="" data-val-length-max="600" data-val-length="Can be a maximum of 600 characters" data-val-email="" data-val-either="" data-val-either-group="" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="" data-val-required-if-value="" data-val-required-if="" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="What is the graffiti on?" data-prepopulate-property="" name="WhatOnPark.Value"></textarea>
</span>
</label>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-next navigation-button " data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-validation="true" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Next</button>
</div>
</section>
<h2 class="sr-only">Graffiti on street</h2>
<section id="GraffitiOnStreetStep" class="container wizard-step " data-gtm-step-name="Graffiti on street" data-gtm-step-number="6" data-gtm-sub-step-number="6.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="2">
</div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Tell us more
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<div>
<fieldset id="GraffitiOnStreet" class="dci-radiobuttons " data-val-required="Please select an option" data-friendly-label="What's the graffiti on?">
<legend>
What's the graffiti on? <span class="book-weight">(required)</span>
</legend>
<div class="radio-button ">
<input id="GraffitiOnStreetA" type="radio" value="A" name="GraffitiOnStreet.Value">
<label for="GraffitiOnStreetA">
Furniture/Bridge/Road surface
</label>
</div>
<div class="radio-button ">
<input id="GraffitiOnStreetB" type="radio" value="B" name="GraffitiOnStreet.Value">
<label for="GraffitiOnStreetB">
Signage
</label>
</div>
<div class="radio-button ">
<input id="GraffitiOnStreetOther" type="radio" value="Other" name="GraffitiOnStreet.Value">
<label for="GraffitiOnStreetOther">
Other
</label>
</div>
</fieldset>
</div>
<div id="OtherTypeContainer">
<label>
What is the graffiti on? <span class="book-weight">(required)</span>
<span class="input-validation-container">
<textarea id="WhatOn" class="dci-textinput has-placeholder" placeholder="For example; a wall, a tree, a bench" data-val-required="Please provide a description" data-val-length-min="" data-val-length-max="600" data-val-length="Can be a maximum of 600 characters" data-val-email="" data-val-either="" data-val-either-group="" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="" data-val-required-if-value="" data-val-required-if="" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="What is the graffiti on?" data-prepopulate-property="" name="WhatOn.Value"></textarea>
</span>
</label>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-next navigation-button " data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-validation="true" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Next</button>
</div>
</section>
<h2 class="sr-only">Graffiti painted surface</h2>
<section id="GraffitiPaintedSurfaceStep" class="container wizard-step " data-gtm-step-name="Graffiti painted surface" data-gtm-step-number="7" data-gtm-sub-step-number="7.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="1">
</div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Tell us more
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<div>
<fieldset id="PaintedSurface" class="dci-radiobuttons " data-val-required="Please select an option" data-friendly-label="Is the graffiti on a painted surface?">
<legend>
Is the graffiti on a painted surface? <span class="book-weight">(required)</span>
</legend>
<div class="radio-button ">
<input id="PaintedSurfaceYes" type="radio" value="yes" name="PaintedSurface.Value">
<label for="PaintedSurfaceYes">
Yes
</label>
</div>
<div class="radio-button ">
<input id="PaintedSurfaceNo" type="radio" value="no" name="PaintedSurface.Value">
<label for="PaintedSurfaceNo">
No
</label>
</div>
<div class="radio-button ">
<input id="PaintedSurfaceUnsure" type="radio" value="unsure" name="PaintedSurface.Value">
<label for="PaintedSurfaceUnsure">
Unsure
</label>
</div>
</fieldset>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-next navigation-button " data-nav-show="next:.wizard-step" data-nav-hide=".wizard-step" data-nav-trigger-validation="true" data-nav-trigger-gtm-form-step="true" data-nav-history="ReportWizard">Next</button>
</div>
</section>
<h2 class="sr-only">Confirm</h2>
<section id="ReportConfirmStep" class="container wizard-step confirm-step" data-display-callback="DCIReport.onConfirmStepDisplayed" data-gtm-step-name="Confirm" data-gtm-step-number="8" data-gtm-sub-step-number="8.0" style="display: none;">
<div class="wizard-progress gtm-no-interaction" data-future-steps="0">
</div>
<div class="page-heading-container">
<div class="content-column">
<h1 class="page-heading">
Confirm details
</h1>
</div>
<div class="gradient-separator">
</div>
</div>
<div class="content-column">
<div class="location-confirm-heading">
Location address
</div>
<div id="StreetAddressConfirm"></div>
<div id="ConfirmStepMapContainer">
<div id="ConfirmStepMapCanvas" style="position: relative; overflow: hidden;"><div style="height: 100%; width: 100%; position: absolute; top: 0px; left: 0px; background-color: rgb(229, 227, 223);"><div style="overflow: hidden;"></div><div class="gm-style" style="position: absolute; z-index: 0; left: 0px; top: 0px; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px;"><div tabindex="0" style="position: absolute; z-index: 0; left: 0px; top: 0px; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; cursor: url("https://maps.gstatic.com/mapfiles/openhand_8_8.cur"), default; touch-action: pan-x pan-y;"><div style="z-index: 1; position: absolute; left: 50%; top: 50%; transform: translate(0px, 0px);"><div style="position: absolute; left: 0px; top: 0px; z-index: 100; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; z-index: 1; transform: matrix(1, 0, 0, 1, -136, -207);"><div style="position: absolute; left: 0px; top: 0px; width: 256px; height: 256px;"><div style="width: 256px; height: 256px;"></div></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 101; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 102; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 103; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: -1;"><div style="position: absolute; z-index: 1; transform: matrix(1, 0, 0, 1, -136, -207);"><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 0px; top: 0px;"></div></div></div><div style="width: 24px; height: 40px; overflow: hidden; position: absolute; left: -11px; top: -37px; z-index: 1000001;"><img alt="" src="./Report graffiti - City of Melbourne_files/loc_pin.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 24px; height: 40px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; z-index: 1; transform: matrix(1, 0, 0, 1, -136, -207);"></div></div></div><div class="gm-style-pbc" style="z-index: 2; position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px; opacity: 0;"><p class="gm-style-pbt"></p></div><div style="z-index: 3; position: absolute; height: 100%; width: 100%; padding: 0px; border-width: 0px; margin: 0px; left: 0px; top: 0px; touch-action: pan-x pan-y;"><div style="z-index: 4; position: absolute; left: 50%; top: 50%; transform: translate(0px, 0px);"><div style="position: absolute; left: 0px; top: 0px; z-index: 104; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 105; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 106; width: 100%;"><div class="gmnoprint" title="" style="width: 24px; height: 40px; overflow: hidden; position: absolute; opacity: 0.01; cursor: pointer; touch-action: none; left: -11px; top: -37px; z-index: 1000001;"><img alt="" src="./Report graffiti - City of Melbourne_files/loc_pin.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 24px; height: 40px; user-select: none; border: 0px; padding: 0px; margin: 0px; max-width: none;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 107; width: 100%;"></div></div></div></div><iframe frameborder="0" style="z-index: -1; position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; border: none;" src="./Report graffiti - City of Melbourne_files/saved_resource(1).html"></iframe></div></div></div>
<div id="ConfirmStepFeatureLocation">
</div>
</div>
<div id="ConfirmationThumbnails">
<div class="content-block-standard">
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo1-thumbnail" alt="Photo 1 thumbnail">
</span>
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo2-thumbnail" alt="Photo 2 thumbnail">
</span>
</div>
<div class="content-block-standard">
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo3-thumbnail" alt="Photo 3 thumbnail">
</span>
<span class="dci-fileinput-thumbnail-container">
<img src="./Report graffiti - City of Melbourne_files/dci-fileupload-thumbnail.png" class="dci-fileinput-thumbnail photo4-thumbnail" alt="Photo 4 thumbnail">
</span>
</div>
</div>
<h2 class="sr-only">Do you have any further information to help us action your request?</h2>
<label>
Do you have any further information to help us action your request?
<span class="input-validation-container">
<textarea id="OtherInformation" class="dci-textinput" placeholder="" data-val-required="" data-val-length-min="" data-val-length-max="600" data-val-length="Can be a maximum of 600 characters" data-val-email="" data-val-either="" data-val-either-group="" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="" data-val-required-if-value="" data-val-required-if="" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="Do you have any further information to help us action your request?" data-prepopulate-property="" name="OtherInformation.Value"></textarea>
</span>
</label>
<hr class="content-block-standard tight-top">
<div>
<div class="content-block-standard">
<div id="NotificationsHeading" class="label-style">
Notifications
</div>
</div>
<div class="dci-checkbox">
<input data-val="true" data-val-required="The Checked field is required." id="ReceiveUpdates" name="ReceiveUpdates.Checked" type="checkbox" value="true">
<label for="ReceiveUpdates">I would like to receive notifications and updates</label>
</div>
<div id="ReceiveUpdatesDetails" class="content-block-standard">
<div class="content-block-long">
We will need your contact details for us to keep you updated
</div>
<label>
First name <span class="book-weight">(required)</span>
<span class="input-validation-container">
<input type="text" id="FirstName" class="dci-textinput" data-val-required="You must provide your first name" data-val-length-min="" data-val-length-max="40" maxlength="40" data-val-length="First name cannot exceed 40 characters" data-val-email="" data-val-either="" data-val-either-group="" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="" data-val-required-if-value="" data-val-required-if="" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="First name" data-prepopulate-property="" name="FirstName.Value" value="">
</span>
</label>
<label>
Last name <span class="book-weight">(required)</span>
<span class="input-validation-container">
<input type="text" id="Surname" class="dci-textinput" data-val-required="You must provide your last name" data-val-length-min="" data-val-length-max="80" maxlength="80" data-val-length="Last name cannot exceed 80 characters" data-val-email="" data-val-either="" data-val-either-group="" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="" data-val-required-if-value="" data-val-required-if="" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="Last name" data-prepopulate-property="" name="Surname.Value" value="">
</span>
</label>
<div class="provide-one">
You must provide one of the following
</div>
<label>
Email
<span class="input-validation-container">
<input type="email" id="Email" class="dci-textinput" data-val-required="" data-val-length-min="" data-val-length-max="80" maxlength="80" data-val-length="Email cannot exceed 80 characters" data-val-email="Please provide a valid email address" data-val-either="You must provide your email address or mobile number" data-val-either-group="EmailMobile" data-val-begins="" data-val-begins-chars="" data-val-regex="" data-val-regex-pattern="" data-val-numeric="" data-val-phone="" data-val-required-if-id="ContactPreference" data-val-required-if-value="Email" data-val-required-if="You must provide an email address in order to be contacted by email" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="Email" data-prepopulate-property="" name="Email.Value" value="">
</span>
</label>
<label>
Mobile
<span class="input-validation-container">
<input type="text" id="Mobile" class="dci-textinput" data-val-required="" data-val-length-min="10" data-val-length-max="10" maxlength="10" data-val-length="Mobile numbers should contain 10 digits" data-val-email="" data-val-either="You must provide your email address or mobile number" data-val-either-group="EmailMobile" data-val-begins="Mobile numbers should start with an "04"" data-val-begins-chars="04" data-val-regex="" data-val-regex-pattern="" data-val-numeric="Please provide a valid mobile number" data-val-phone="" data-val-required-if-id="ContactPreference" data-val-required-if-value="SMS" data-val-required-if="You must provide a mobile number in order to be contacted by SMS" data-val-required-if-populated-id="" data-val-required-if-populated="" data-repeat-of="" data-friendly-label="Mobile" data-prepopulate-property="" name="Mobile.Value" value="">
</span>
</label>
<fieldset id="ContactPreference" class="dci-radiobuttons " data-val-required="Please select an option" data-friendly-label="Send updates via">
<legend>
Send updates via <span class="book-weight">(required)</span>
</legend>
<div class="radio-button ">
<input id="ContactPreferenceEmail" type="radio" value="Email" name="ContactPreference.Value">
<label for="ContactPreferenceEmail">
Email
</label>
</div>
<div class="radio-button ">
<input id="ContactPreferenceSMS" type="radio" value="SMS" name="ContactPreference.Value">
<label for="ContactPreferenceSMS">
SMS
</label>
</div>
</fieldset>
</div>
</div>
<hr>
<div class="disclaimer">
By submitting your request, you are agreeing to City of Melbourne storing your details in facilities provided by a third party and sharing your details with our service partners. Further information can be found in our Collection notice.
</div>
<a class="help-trigger collapsed" role="button" data-toggle="collapse" href="https://test.services.melbourne.vic.gov.au/report/graffiti#Helpb5bd0bcda7074d97a073624123bef8bd" aria-expanded="false" aria-controls="Helpb5bd0bcda7074d97a073624123bef8bd">
Collection notice
</a>
<div id="Helpb5bd0bcda7074d97a073624123bef8bd" class="help-content collapse">
<p>The City of Melbourne is committed to protecting your privacy.</p>
<p>The personal information requested on this form is being collected by City of Melbourne for the purpose of completing the service that you have requested or any other directly related purpose.</p>
<p>The personal information will also be disclosed to contract service providers for the purpose of completing the service you have requested or any other directly related purpose. It will not be disclosed to any other external third parties without your consent, unless required or authorised by law.</p>
<p>Personal information is not mandatory to complete this service, but if you require updates regarding progress it is.</p>
<p>If you wish to alter any of the personal information you have supplied to City of Melbourne, please contact us via phone: +61 3 9658 9658</p>
<p>For further information about what City of Melbourne does with personal information please refer to our <a href="http://www.melbourne.vic.gov.au/about-council/governance-transparency/policies-protocols/pages/privacy.aspx" target="_blank">Privacy statement</a></p>
<div>
<a role="button" class="collapse-closer" data-toggle="collapse" href="https://test.services.melbourne.vic.gov.au/report/graffiti#Helpb5bd0bcda7074d97a073624123bef8bd" aria-expanded="true" aria-controls="Helpb5bd0bcda7074d97a073624123bef8bd">Close</a>
</div>
</div>
</div>
<div class="wizard-buttons-container">
<button type="button" class="wizard-button wizard-button-previous navigation-button" data-nav-show="previous:history:ReportWizard" data-nav-hide=".wizard-step" data-nav-trigger-validation="false" data-nav-trigger-gtm-form-step="true">Back</button>
<button type="button" class="wizard-button wizard-button-submit">Send report</button>
</div>
</section>
<input name="ReceiveUpdates.Checked" type="hidden" value="false"><input type="hidden" name="GTMProcessId" value="2a4e4d0b-80be-4a2e-8eed-d64c9556c5f1"></form>
<i class="fa fa-spinner fa-spin fa-3x fa-fw loading-animation"></i>
<div id="LoadingScreen">
<div class="content-column">
<div class="loading-heading">
Processing report...
</div>
<div class="loading-content">
<p><strong>Please wait a moment<br>while we process your report.</strong></p>
<p>Don't close this window as your<br>report will be lost.</p>
</div>
</div>
</div>
</div>
</div>
<footer class="noindex footer gtm-no-interaction">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4">
<div class="clear">
<div class="element">
<span class="fa fa-fw"></span>
</div>
<div class="element">
<a class="no-underline" href="https://www.melbourne.vic.gov.au/pages/contact-us.aspx">Contact City of Melbourne</a>
</div>
</div>
<div class="clear">
<div class="element">
<span class="fa fa-phone fa-fw"></span>
</div>
<div class="element">
<a class="visible-xs visible-sm no-underline" href="tel:+61 3 9658 9658">+61 3 9658 9658</a>
<span class="hidden-xs hidden-sm">+61 3 9658 9658</span>
</div>
</div>
<div class="clear">
<div class="element">
<span class="fa fa-map-marker fa-fw"></span>
</div>
<div class="element">
<div>
<address>
90-120 Swanston Street,<br>Melbourne VIC 3000
</address>
</div>
<div>
National relay service 133 677
</div>
<div>
(ask for 03 9658 9658)