form_stalker 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,88 @@
1
+ module FormStalker
2
+ class Response
3
+ RAILS_HTTP_STATUS = {
4
+ '100' => :continue,
5
+ '101' => :switching_protocols,
6
+ '102' => :processing,
7
+ '200' => :ok,
8
+ '201' => :created,
9
+ '202' => :accepted,
10
+ '203' => :non_authoritative_information,
11
+ '204' => :no_content,
12
+ '205' => :reset_content,
13
+ '206' => :partial_content,
14
+ '207' => :multi_status,
15
+ '226' => :im_used,
16
+ '300' => :multiple_choices,
17
+ '301' => :moved_permanently,
18
+ '302' => :found,
19
+ '303' => :see_other,
20
+ '304' => :not_modified,
21
+ '305' => :use_proxy,
22
+ '307' => :temporary_redirect,
23
+ '400' => :bad_request,
24
+ '401' => :unauthorized,
25
+ '402' => :payment_required,
26
+ '403' => :forbidden,
27
+ '404' => :not_found,
28
+ '405' => :method_not_allowed,
29
+ '406' => :not_acceptable,
30
+ '407' => :proxy_authentication_required,
31
+ '408' => :request_timeout,
32
+ '409' => :conflict,
33
+ '410' => :gone,
34
+ '411' => :length_required,
35
+ '412' => :precondition_failed,
36
+ '413' => :request_entity_too_large,
37
+ '414' => :request_uri_too_long,
38
+ '415' => :unsupported_media_type,
39
+ '416' => :requested_range_not_satisfiable,
40
+ '417' => :expectation_failed,
41
+ '422' => :unprocessable_entity,
42
+ '423' => :locked,
43
+ '424' => :failed_dependency,
44
+ '426' => :upgrade_required,
45
+ '500' => :internal_server_error,
46
+ '501' => :not_implemented,
47
+ '502' => :bad_gateway,
48
+ '503' => :service_unavailable,
49
+ '504' => :gateway_timeout,
50
+ '505' => :http_version_not_supported,
51
+ '507' => :insufficient_storage,
52
+ '510' => :not_extended
53
+ }.freeze
54
+
55
+ attr_reader :error, :status
56
+
57
+ attr_accessor :data
58
+
59
+ def initialize(http_response)
60
+ @http_response = http_response
61
+
62
+ @status = RAILS_HTTP_STATUS[@http_response.code]
63
+
64
+ @data = JSON.parse(@http_response.body) if @status == :ok
65
+
66
+ parse_error
67
+ end
68
+
69
+ def ok?
70
+ status == :ok
71
+ end
72
+
73
+ protected ######################## PROTECTED ###############################
74
+
75
+ def parse_error
76
+ @error =
77
+ case status
78
+ when :ok
79
+ @data.is_a?(Hash) ? @data['error'] : nil
80
+ when :unauthorized
81
+ 'Either your oauth token is invalid ' \
82
+ "or you don't have access to this resource"
83
+ else
84
+ status
85
+ end
86
+ end
87
+ end
88
+ end
@@ -0,0 +1,3 @@
1
+ module FormStalker
2
+ VERSION = '1.0.0'.freeze
3
+ end
@@ -0,0 +1,58 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.formstack.com/api/v2/form/-1/field.json?oauth_token=valid_oauth_token
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.formstack.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - no-cache
25
+ Content-Type:
26
+ - application/json; charset=UTF-8
27
+ Date:
28
+ - Fri, 29 Jul 2016 14:12:04 GMT
29
+ P3p:
30
+ - CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI
31
+ DSP COR"
32
+ Server:
33
+ - nginx
34
+ Set-Cookie:
35
+ - FormstackAdmin=rb6oq13q19asaln18lrnt9vjf5; path=/api/; secure; HttpOnly
36
+ - rgemail=subs%40streetbees.com; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
37
+ - rgfirstname=Queen; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
38
+ - rgfullname=Bee; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
39
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
40
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
41
+ - rgisanonymous=true; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
42
+ - rguserid=642682; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
43
+ - rguserid=6cddb9b1-409e-4e89-96d7-ff6e41f5d90d; expires=Sun, 28-Aug-2016 14:12:04
44
+ GMT; Max-Age=2592000
45
+ - rguuid=false; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
46
+ - rguuid=true; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
47
+ X-Robots-Tag:
48
+ - noindex, nofollow
49
+ Content-Length:
50
+ - '61'
51
+ Connection:
52
+ - keep-alive
53
+ body:
54
+ encoding: UTF-8
55
+ string: '{"status":"error","error":"A valid form id was not supplied"}'
56
+ http_version:
57
+ recorded_at: Fri, 29 Jul 2016 14:12:04 GMT
58
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,97 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.formstack.com/api/v2/form/2178204/field.json?oauth_token=valid_oauth_token
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.formstack.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - no-cache
25
+ Content-Type:
26
+ - application/json; charset=UTF-8
27
+ Date:
28
+ - Fri, 29 Jul 2016 14:12:04 GMT
29
+ P3p:
30
+ - CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI
31
+ DSP COR"
32
+ Server:
33
+ - nginx
34
+ Set-Cookie:
35
+ - FormstackAdmin=v4t1tmg5nii9rqvvtmdjs688i0; path=/api/; secure; HttpOnly
36
+ - rgemail=subs%40streetbees.com; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
37
+ - rgfirstname=Queen; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
38
+ - rgfullname=Bee; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
39
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
40
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
41
+ - rgisanonymous=true; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
42
+ - rguserid=642682; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
43
+ - rguserid=f630ba0f-52ee-4cce-9a49-798de1d31a1b; expires=Sun, 28-Aug-2016 14:12:04
44
+ GMT; Max-Age=2592000
45
+ - rguuid=false; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
46
+ - rguuid=true; expires=Sun, 28-Aug-2016 14:12:04 GMT; Max-Age=2592000
47
+ X-Robots-Tag:
48
+ - noindex, nofollow
49
+ Content-Length:
50
+ - '2166'
51
+ Connection:
52
+ - keep-alive
53
+ body:
54
+ encoding: ASCII-8BIT
55
+ string: '[{"id":"37314714","label":"Short Answer","hide_label":"0","description":"Here
56
+ is a sample tooltip","name":"short_answer","type":"text","options":"","required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"0","default":"","text_size":50,"maxlength":0,"placeholder":"What
57
+ is your short answer?"},{"id":"37314722","label":"Longer Text Answer","hide_label":"0","description":"","name":"longer_text_answer","type":"textarea","options":"","required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"1","default":"","rows":10,"cols":50,"maxlength":0,"placeholder":""},{"id":"40963803","label":"Date\/Time","hide_label":"0","description":"","name":"datetime","type":"datetime","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"2","default":{"default":null},"date_format":"M
58
+ d, Y","time_format":"h:i A","year_minus":5,"year_plus":5},{"id":"44337087","label":"Select
59
+ (Radio Buttons) - Optional","hide_label":"0","description":"","name":"select_radio_buttons__optional","type":"radio","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"3","default":"","option_layout":"vertical","option_other":"0","randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314734","label":"Select
60
+ (Radio Buttons) - Required","hide_label":"0","description":"","name":"select_radio_buttons__required","type":"radio","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"4","default":"","option_layout":"vertical","option_other":"1","randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314736","label":"Select
61
+ (Dropdown List)","hide_label":"0","description":"","name":"select_dropdown_list","type":"select","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"5","default":"","select_size":1,"option_layout":"vertical","option_other":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"40952921","label":"Show
62
+ Dropdown (if Dropdown is not Option1)","hide_label":"0","description":"","name":"show_dropdown_if_dropdown_is_not_option1","type":"select","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"6","default":"","select_size":1,"option_layout":"vertical","option_other":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314733","label":"Select
63
+ (Checkbox)","hide_label":"0","description":"","name":"select_checkbox","type":"checkbox","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"7","default":"","option_layout":"vertical","option_other":"1","option_checkall":"0","randomize_options":0,"option_store":"value","option_show_values":0},{"id":"41111633","label":"Here''s
64
+ a checkbox question that is just so long the text goes on and on and on. I''m
65
+ just going to keep typing until the question is so large that some of the
66
+ text is no longer readable because it goes off the screen. How is a user supposed
67
+ to answers a question like this when they can''t see most of it. This is particularly
68
+ problematic on small iOS phones. So I''ll just type for a little while longer
69
+ until this text is so large that it 100%, definitely, positively will take
70
+ up at least the whole screen. Let''s hope this is enough.","hide_label":"0","description":"","name":"heres_a_checkbox_question_that_is_just_so_long_the_text_goes_on_and_on_and_on_im_just_going_to_keep_typing_until_the_question_is_so_large_that_some_of_the_text_is_no_longer_readable_because_it_goes_off_the_screen_how_is_a_user_supposed_to_answers_a_question_like_this_when_they_cant_see_most_of_it_this_is_particularly_problematic_on_small_ios_phones_so_ill_just_type_for_a_little_while_longer_until_this_text_is_so_large_that_it_100_definitely_positively_will_take_up_at_least_the_whole_screen_lets_hope_this_is_enough","type":"checkbox","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"8","default":"","option_layout":"vertical","option_other":0,"option_checkall":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"41111634","label":"Here''s
71
+ a checkbox question that has really long answers to see how they look on the
72
+ screen","hide_label":"0","description":"","name":"heres_a_checkbox_question_that_has_really_long_answers_to_see_how_they_look_on_the_screen","type":"checkbox","options":[{"label":"Option1
73
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option1
74
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option2
75
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option2
76
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option3
77
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option3
78
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option4
79
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option4
80
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option5
81
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option5
82
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option6
83
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option6
84
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option7
85
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option7
86
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option8
87
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option8
88
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option9
89
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option9
90
+ - the answer to this is long enough that it spreads over multiple lines"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"9","default":"","option_layout":"vertical","option_other":0,"option_checkall":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314784","label":"Number","hide_label":"0","description":"","name":"number","type":"number","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"10","default":"","text_size":5,"min_value":"","max_value":"","currency":"pound","decimals":"2","slider":"0","placeholder":""},{"id":"37314745","label":"Number
91
+ Slider","hide_label":"0","description":"","name":"number_slider","type":"number","options":"","required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"11","default":"","text_size":5,"min_value":"0","max_value":"10","currency":"","decimals":"0","slider":"1","placeholder":""},{"id":"37383929","label":"Name","hide_label":"0","description":"","name":"name","type":"name","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"12","default":"","text_size":50,"show_prefix":0,"show_middle":0,"show_initial":0,"show_suffix":0},{"id":"37314768","label":"Phone","hide_label":"0","description":"","name":"phone","type":"phone","options":"","required":"0","uniq":"1","hidden":"0","readonly":"0","colspan":"1","sort":"13","default":"","text_size":"20","format":"UK","phone_format":"national","placeholder":""},{"id":"37383914","label":"Email","hide_label":"0","description":"","name":"email","type":"email","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"14","default":"","text_size":50,"maxlength":0,"confirm":0,"placeholder":""},{"id":"37314884","label":"Image","hide_label":"0","description":"","name":"image","type":"file","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"15","default":"","text_size":"30","file_types":"jpg,jpeg,gif,png,bmp,tif,psd,pdf,doc,docx,xls,xlsx,txt,mp3,mp4,aac,wav,au,wmv,avi,mpg,mpeg,zip,gz,rar,z,tgz,tar,sitx"},{"id":"37750813","label":"Video","hide_label":"0","description":"","name":"video","type":"file","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"16","default":"","text_size":"30","file_types":"avi,mpg,mpeg"},{"id":"40559422","label":"Matrix","hide_label":"0","description":"","name":"matrix","type":"matrix","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"17","default":{"Item
92
+ 1":[],"Item 2":[],"Item 3":[]},"row_choices":"Item 1\nItem 2\nItem 3","column_choices":"Very
93
+ Good\nGood\nFair\nPoor\nVery Poor","one_per_row":"1","one_per_column":"0","randomize_rows":"0"},{"id":"37314777","label":"Signature","hide_label":"0","description":"Use
94
+ your mouse or finger to draw your signature above","name":"signature","type":"signature","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"18","default":""}]'
95
+ http_version:
96
+ recorded_at: Fri, 29 Jul 2016 14:12:04 GMT
97
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,58 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.formstack.com/api/v2/form/-1.json?oauth_token=valid_oauth_token
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.formstack.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - no-cache
25
+ Content-Type:
26
+ - application/json; charset=UTF-8
27
+ Date:
28
+ - Fri, 29 Jul 2016 14:12:02 GMT
29
+ P3p:
30
+ - CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI
31
+ DSP COR"
32
+ Server:
33
+ - nginx
34
+ Set-Cookie:
35
+ - FormstackAdmin=57sr0dp842igbclka8btmda491; path=/api/; secure; HttpOnly
36
+ - rgemail=subs%40streetbees.com; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
37
+ - rgfirstname=Queen; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
38
+ - rgfullname=Bee; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
39
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
40
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
41
+ - rgisanonymous=true; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
42
+ - rguserid=642682; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
43
+ - rguserid=d56eaa23-042a-4a91-84c3-3b6931b9db00; expires=Sun, 28-Aug-2016 14:12:02
44
+ GMT; Max-Age=2592000
45
+ - rguuid=false; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
46
+ - rguuid=true; expires=Sun, 28-Aug-2016 14:12:02 GMT; Max-Age=2592000
47
+ X-Robots-Tag:
48
+ - noindex, nofollow
49
+ Content-Length:
50
+ - '51'
51
+ Connection:
52
+ - keep-alive
53
+ body:
54
+ encoding: UTF-8
55
+ string: '{"status":"error","error":"The form was not found"}'
56
+ http_version:
57
+ recorded_at: Fri, 29 Jul 2016 14:12:03 GMT
58
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,538 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.formstack.com/api/v2/form/2178204.json?oauth_token=valid_oauth_token
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.formstack.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - no-cache
25
+ Content-Type:
26
+ - application/json; charset=UTF-8
27
+ Date:
28
+ - Fri, 29 Jul 2016 14:12:03 GMT
29
+ P3p:
30
+ - CP="CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI
31
+ DSP COR"
32
+ Server:
33
+ - nginx
34
+ Set-Cookie:
35
+ - FormstackAdmin=fm2o8eqgn3g4a9kesdk7bq94r3; path=/api/; secure; HttpOnly
36
+ - rgemail=subs%40streetbees.com; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
37
+ - rgfirstname=Queen; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
38
+ - rgfullname=Bee; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
39
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
40
+ - rgisanonymous=false; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
41
+ - rgisanonymous=true; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
42
+ - rguserid=56247f63-b135-4ba2-b210-0345e1216bec; expires=Sun, 28-Aug-2016 14:12:03
43
+ GMT; Max-Age=2592000
44
+ - rguserid=642682; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
45
+ - rguuid=false; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
46
+ - rguuid=true; expires=Sun, 28-Aug-2016 14:12:03 GMT; Max-Age=2592000
47
+ X-Robots-Tag:
48
+ - noindex, nofollow
49
+ Content-Length:
50
+ - '9307'
51
+ Connection:
52
+ - keep-alive
53
+ body:
54
+ encoding: ASCII-8BIT
55
+ string: '{"id":"2178204","name":"Complete Questions","viewkey":"uLEnbnJCdE","views":"3","created":"2015-11-11
56
+ 05:08:01","updated":"2016-07-28 06:26:48","deleted":"0","db":"1","submissions":"3","submissions_unread":"3","submissions_today":0,"last_submission_id":"260248869","last_submission_time":"2016-06-16
57
+ 13:49:31","url":"https:\/\/streetbees.formstack.com\/forms\/untitled_form_65_","data_url":"","summary_url":"","rss_url":"","encrypted":false,"thumbnail_url":"https:\/\/s3.amazonaws.com\/files.formstack.com\/admin\/","submit_button_title":"Submit
58
+ Answers","inactive":false,"timezone":"Europe\/London","permissions":"full","folder":"-
59
+ Streetbees Tech","javascript":"<script type=\"text\/javascript\" src=\"https:\/\/streetbees.formstack.com\/forms\/js.php\/untitled_form_65_\"><\/script><noscript><a
60
+ href=\"https:\/\/streetbees.formstack.com\/forms\/untitled_form_65_\" title=\"Online
61
+ Form\">Online Form - Complete Questions<\/a><\/noscript>","html":"<!DOCTYPE
62
+ html>\n<html lang=\"\">\n<head>\n<title>Complete Questions<\/title>\n<meta
63
+ charset=\"utf-8\" \/>\n<meta name=\"viewport\" content=\"width=device-width,
64
+ initial-scale=1, maximum-scale=1\">\n<!--[if IE]>\n<link rel=\"stylesheet\"
65
+ type=\"text\/css\" media=\"all\" href=\"https:\/\/www.formstack.com\/forms\/css\/3\/ie.css?20140508\"
66
+ \/>\n<![endif]-->\n<!--[if IE 7]><link rel=\"stylesheet\" type=\"text\/css\"
67
+ media=\"all\" href=\"https:\/\/www.formstack.com\/forms\/css\/3\/ie7.css\"
68
+ \/><![endif]-->\n<!--[if IE 6]><link rel=\"stylesheet\" type=\"text\/css\"
69
+ media=\"all\" href=\"https:\/\/www.formstack.com\/forms\/css\/3\/ie6fixes.css\"
70
+ \/><![endif]-->\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/\/static.formstack.com\/forms\/css\/3\/reset.css\"
71
+ \/>\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/\/static.formstack.com\/forms\/css\/3\/jquery-ui.css\"
72
+ \/>\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/\/static.formstack.com\/forms\/css\/3\/default.css\"
73
+ \/>\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/\/static.formstack.com\/forms\/css\/3\/steel.css\"
74
+ \/>\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/\/static.formstack.com\/forms\/..\/common\/css\/uil-static.css\"
75
+ \/>\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/\/static.formstack.com\/forms\/css\/common\/dialogs.css\"
76
+ \/>\n<style type=\"text\/css\">\n<\/style>\n<\/head>\n<body class=\"fsBody\"
77
+ id=\"fsLocal\">\n<form method=\"post\" novalidate enctype=\"multipart\/form-data\"
78
+ action=\"https:\/\/www.formstack.com\/forms\/index.php\" class=\"fsForm fsSingleColumn
79
+ fsMaxCol1\" id=\"fsForm2178204\">\n<input type=\"hidden\" name=\"form\" value=\"2178204\"
80
+ \/>\n<input type=\"hidden\" name=\"viewkey\" value=\"uLEnbnJCdE\" \/>\n<input
81
+ type=\"hidden\" name=\"hidden_fields\" id=\"hidden_fields2178204\" value=\"\"
82
+ \/>\n<input type=\"hidden\" name=\"_submit\" value=\"1\" \/>\n<input type=\"hidden\"
83
+ name=\"incomplete\" id=\"incomplete2178204\" value=\"\" \/>\n<input type=\"hidden\"
84
+ name=\"incomplete_password\" id=\"incomplete_password2178204\" \/>\n<input
85
+ type=\"hidden\" name=\"style_version\" value=\"3\" \/>\n<input type=\"hidden\"
86
+ id=\"viewparam\" name=\"viewparam\" value=\"598544\" \/>\n<div role=\"alert\"
87
+ id=\"requiredFieldsError\" style=\"display:none;\">Please fill in a valid
88
+ value for all required fields<\/div>\n<div role=\"alert\" id=\"invalidFormatError\"
89
+ style=\"display:none;\">Please ensure all values are in a proper format.<\/div>\n<div
90
+ role=\"alert\" id=\"resumeConfirm\" style=\"display:none;\">Are you sure you
91
+ want to leave this form and resume later?<\/div>\n<div role=\"alert\" id=\"resumeConfirmPassword\"
92
+ style=\"display: none;\">Are you sure you want to leave this form and resume
93
+ later? If so, please enter a password below to securely save your form.<\/div>\n<div
94
+ role=\"alert\" id=\"saveAndResume\" style=\"display: none;\">Save and Resume
95
+ Later<\/div>\n<div role=\"alert\" id=\"saveResumeProcess\" style=\"display:
96
+ none;\">Save and get link<\/div>\n<div role=\"alert\" id=\"fileTypeAlert\"
97
+ style=\"display:none;\">You must upload one of the following file types for
98
+ the selected field:<\/div>\n<div role=\"alert\" id=\"embedError\" style=\"display:none;\">There
99
+ was an error displaying the form. Please copy and paste the embed code again.<\/div>\n<div
100
+ role=\"alert\" id=\"applyDiscountButton\" style=\"display:none;\">Apply Discount<\/div>\n<div
101
+ role=\"alert\" id=\"dcmYouSaved\" style=\"display:none;\">You saved<\/div>\n<div
102
+ role=\"alert\" id=\"dcmWithCode\" style=\"display:none;\">with code<\/div>\n<div
103
+ role=\"alert\" id=\"submitButtonText\" style=\"display:none;\">Submit Answers<\/div>\n<div
104
+ role=\"alert\" id=\"submittingText\" style=\"display:none;\">Submitting<\/div>\n<div
105
+ role=\"alert\" id=\"validatingText\" style=\"display:none;\">Validating<\/div>\n<div
106
+ role=\"alert\" id=\"autocaptureDisabledText\" style=\"display:none;\"><\/div>\n<div
107
+ role=\"alert\" id=\"paymentInitError\" style=\"display:none;\">There was an
108
+ error initializing the payment processor on this form. Please contact the
109
+ form owner to correct this issue.<\/div>\n<div role=\"alert\" id=\"checkFieldPrompt\"
110
+ style=\"display:none;\">Please check the field: <\/div>\n<div class=\"fsPage\"
111
+ id=\"fsPage2178204-1\">\n<div class=\"fsSection fs1Col\">\n<div id=\"fsRow2178204-1\"
112
+ class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div class=\"fsRowBody fsCell
113
+ fsFieldCell fsFirst fsLast fsLabelVertical fsHidden fsSpan100\" id=\"fsCell37314714\"
114
+ aria-describedby=\"fsSupporting37314714\" lang=\"en\">\n<label id=\"label37314714\"
115
+ class=\"fsLabel fsRequiredLabel\" for=\"field37314714\">Short Answer<span
116
+ class=\"fsRequiredMarker\">*<\/span> <\/label>\n<input
117
+ type=\"text\" id=\"field37314714\" name=\"field37314714\" size=\"50\" required
118
+ placeholder=\"What is your short answer?\" title=\"What is your short answer?\"
119
+ value=\"\" class=\"fsField fsRequired\" aria-required=\"true\" disabled=\"disabled\"
120
+ \/>\n<div id=\"fsSupporting37314714\" class=\"fsSupporting\">Here is a sample
121
+ tooltip<\/div>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-2\" class=\"fsRow
122
+ fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell fsFirst
123
+ fsLast fsLabelVertical fsSpan100\" id=\"fsCell37314722\" lang=\"en\">\n<label
124
+ id=\"label37314722\" class=\"fsLabel fsRequiredLabel\" for=\"field37314722\">Longer
125
+ Text Answer<span class=\"fsRequiredMarker\">*<\/span> <\/label>\n<textarea
126
+ id=\"field37314722\" name=\"field37314722\" rows=\"10\" cols=\"50\" required
127
+ class=\"fsField fsRequired\" aria-required=\"true\"><\/textarea>\n<\/div>\n<\/div>\n<div
128
+ id=\"fsRow2178204-3\" class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody
129
+ fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell40963803\"
130
+ lang=\"en\">\n<fieldset id=\"label40963803\">\n<legend class=\"fsLabel fsLabelVertical\"><span>Date\/Time<\/span><\/legend>\n<div
131
+ class=\"fieldset-content\">\n<!-- Used to pull in url for jquery -->\n<span
132
+ style=\"display:none;\" id=\"fsCalendar40963803ImageUrl\">https:\/\/www.formstack.com\/forms\/images\/2\/calendar.png<\/span>\n<input
133
+ type=\"hidden\" id=\"field40963803Format\" name=\"field40963803Format\" value=\"MDY\"
134
+ \/>\n<div class=\"hidden\"><label for=\"field40963803M\">Month<\/label><\/div>\n<select
135
+ id=\"field40963803M\" name=\"field40963803M\" class=\"fsField\">\n<option
136
+ value=\"\"> <\/option>\n<option value=\"Jan\">Jan<\/option>\n<option value=\"Feb\">Feb<\/option>\n<option
137
+ value=\"Mar\">Mar<\/option>\n<option value=\"Apr\">Apr<\/option>\n<option
138
+ value=\"May\">May<\/option>\n<option value=\"Jun\">Jun<\/option>\n<option
139
+ value=\"Jul\">Jul<\/option>\n<option value=\"Aug\">Aug<\/option>\n<option
140
+ value=\"Sep\">Sep<\/option>\n<option value=\"Oct\">Oct<\/option>\n<option
141
+ value=\"Nov\">Nov<\/option>\n<option value=\"Dec\">Dec<\/option>\n<\/select>\n<div
142
+ class=\"hidden\"><label for=\"field40963803D\">Day<\/label><\/div>\n<select
143
+ id=\"field40963803D\" name=\"field40963803D\" class=\"fsField\">\n<option
144
+ value=\"\"> <\/option>\n<option value=\"01\">01<\/option>\n<option value=\"02\">02<\/option>\n<option
145
+ value=\"03\">03<\/option>\n<option value=\"04\">04<\/option>\n<option value=\"05\">05<\/option>\n<option
146
+ value=\"06\">06<\/option>\n<option value=\"07\">07<\/option>\n<option value=\"08\">08<\/option>\n<option
147
+ value=\"09\">09<\/option>\n<option value=\"10\">10<\/option>\n<option value=\"11\">11<\/option>\n<option
148
+ value=\"12\">12<\/option>\n<option value=\"13\">13<\/option>\n<option value=\"14\">14<\/option>\n<option
149
+ value=\"15\">15<\/option>\n<option value=\"16\">16<\/option>\n<option value=\"17\">17<\/option>\n<option
150
+ value=\"18\">18<\/option>\n<option value=\"19\">19<\/option>\n<option value=\"20\">20<\/option>\n<option
151
+ value=\"21\">21<\/option>\n<option value=\"22\">22<\/option>\n<option value=\"23\">23<\/option>\n<option
152
+ value=\"24\">24<\/option>\n<option value=\"25\">25<\/option>\n<option value=\"26\">26<\/option>\n<option
153
+ value=\"27\">27<\/option>\n<option value=\"28\">28<\/option>\n<option value=\"29\">29<\/option>\n<option
154
+ value=\"30\">30<\/option>\n<option value=\"31\">31<\/option>\n<\/select>\n<div
155
+ class=\"hidden\"><label for=\"field40963803Y\">Year<\/label><\/div>\n<select
156
+ id=\"field40963803Y\" name=\"field40963803Y\" class=\"fsField\">\n<option
157
+ value=\"\"> <\/option>\n<option value=\"2011\">2011<\/option>\n<option value=\"2012\">2012<\/option>\n<option
158
+ value=\"2013\">2013<\/option>\n<option value=\"2014\">2014<\/option>\n<option
159
+ value=\"2015\">2015<\/option>\n<option value=\"2016\">2016<\/option>\n<option
160
+ value=\"2017\">2017<\/option>\n<option value=\"2018\">2018<\/option>\n<option
161
+ value=\"2019\">2019<\/option>\n<option value=\"2020\">2020<\/option>\n<option
162
+ value=\"2021\">2021<\/option>\n<\/select>\n<input type=\"text\" id=\"fsCalendar40963803Link\"
163
+ class=\"fsCalendarPickerLink\" style=\"display:none;\" \/>\n<div id=\"fsCalendar40963803\"
164
+ class=\"fsCalendar\" style=\" position:absolute\"><\/div>\n<span class=\"always-ltr\">\n<div
165
+ class=\"hidden\"><label for=\"field40963803H\">Hour<\/label><\/div>\n<select
166
+ id=\"field40963803H\" name=\"field40963803H\" class=\"fsField\">\n<option
167
+ value=\"\"> <\/option>\n<option value=\"01\">01<\/option>\n<option value=\"02\">02<\/option>\n<option
168
+ value=\"03\">03<\/option>\n<option value=\"04\">04<\/option>\n<option value=\"05\">05<\/option>\n<option
169
+ value=\"06\">06<\/option>\n<option value=\"07\">07<\/option>\n<option value=\"08\">08<\/option>\n<option
170
+ value=\"09\">09<\/option>\n<option value=\"10\">10<\/option>\n<option value=\"11\">11<\/option>\n<option
171
+ value=\"12\">12<\/option>\n<\/select>\n<div class=\"hidden\"><label for=\"field40963803I\">Minute<\/label><\/div>\n<span>:<\/span>
172
+ <select id=\"field40963803I\" name=\"field40963803I\" class=\"fsField\">\n<option
173
+ value=\"\"> <\/option>\n<option value=\"00\">00<\/option>\n<option value=\"01\">01<\/option>\n<option
174
+ value=\"02\">02<\/option>\n<option value=\"03\">03<\/option>\n<option value=\"04\">04<\/option>\n<option
175
+ value=\"05\">05<\/option>\n<option value=\"06\">06<\/option>\n<option value=\"07\">07<\/option>\n<option
176
+ value=\"08\">08<\/option>\n<option value=\"09\">09<\/option>\n<option value=\"10\">10<\/option>\n<option
177
+ value=\"11\">11<\/option>\n<option value=\"12\">12<\/option>\n<option value=\"13\">13<\/option>\n<option
178
+ value=\"14\">14<\/option>\n<option value=\"15\">15<\/option>\n<option value=\"16\">16<\/option>\n<option
179
+ value=\"17\">17<\/option>\n<option value=\"18\">18<\/option>\n<option value=\"19\">19<\/option>\n<option
180
+ value=\"20\">20<\/option>\n<option value=\"21\">21<\/option>\n<option value=\"22\">22<\/option>\n<option
181
+ value=\"23\">23<\/option>\n<option value=\"24\">24<\/option>\n<option value=\"25\">25<\/option>\n<option
182
+ value=\"26\">26<\/option>\n<option value=\"27\">27<\/option>\n<option value=\"28\">28<\/option>\n<option
183
+ value=\"29\">29<\/option>\n<option value=\"30\">30<\/option>\n<option value=\"31\">31<\/option>\n<option
184
+ value=\"32\">32<\/option>\n<option value=\"33\">33<\/option>\n<option value=\"34\">34<\/option>\n<option
185
+ value=\"35\">35<\/option>\n<option value=\"36\">36<\/option>\n<option value=\"37\">37<\/option>\n<option
186
+ value=\"38\">38<\/option>\n<option value=\"39\">39<\/option>\n<option value=\"40\">40<\/option>\n<option
187
+ value=\"41\">41<\/option>\n<option value=\"42\">42<\/option>\n<option value=\"43\">43<\/option>\n<option
188
+ value=\"44\">44<\/option>\n<option value=\"45\">45<\/option>\n<option value=\"46\">46<\/option>\n<option
189
+ value=\"47\">47<\/option>\n<option value=\"48\">48<\/option>\n<option value=\"49\">49<\/option>\n<option
190
+ value=\"50\">50<\/option>\n<option value=\"51\">51<\/option>\n<option value=\"52\">52<\/option>\n<option
191
+ value=\"53\">53<\/option>\n<option value=\"54\">54<\/option>\n<option value=\"55\">55<\/option>\n<option
192
+ value=\"56\">56<\/option>\n<option value=\"57\">57<\/option>\n<option value=\"58\">58<\/option>\n<option
193
+ value=\"59\">59<\/option>\n<\/select>\n&nbsp;\n<div class=\"hidden\"><label
194
+ for=\"field40963803A\">AM\/PM<\/label><\/div>\n<select id=\"field40963803A\"
195
+ name=\"field40963803A\" class=\"fsField\">\n<option value=\"\"> <\/option>\n<option
196
+ value=\"AM\">AM<\/option>\n<option value=\"PM\">PM<\/option>\n<\/select>\n<div
197
+ class=\"fs-clear\">\n<\/div>\n<\/span>\n<\/div><\/fieldset>\n<\/div>\n<\/div>\n<div
198
+ id=\"fsRow2178204-4\" class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div
199
+ class=\"fsRowBody fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsHidden
200
+ fsSpan100\" id=\"fsCell44337087\" lang=\"en\">\n<fieldset id=\"label44337087\">\n<legend
201
+ class=\"fsLabel fsLabelVertical\"><span>Select (Radio Buttons) - Optional<\/span><\/legend>\n<div
202
+ class=\"fieldset-content\">\n<label class=\"fsOptionLabel vertical\" for=\"field44337087_1\"><input
203
+ type=\"radio\" id=\"field44337087_1\" name=\"field44337087\" value=\"Option1\"
204
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option1<\/label>\n<label
205
+ class=\"fsOptionLabel vertical\" for=\"field44337087_2\"><input type=\"radio\"
206
+ id=\"field44337087_2\" name=\"field44337087\" value=\"Option2\" class=\"fsField
207
+ vertical\" disabled=\"disabled\" \/>Option2<\/label>\n<label class=\"fsOptionLabel
208
+ vertical\" for=\"field44337087_3\"><input type=\"radio\" id=\"field44337087_3\"
209
+ name=\"field44337087\" value=\"Option3\" class=\"fsField vertical\" disabled=\"disabled\"
210
+ \/>Option3<\/label>\n<\/div><\/fieldset>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-5\"
211
+ class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div class=\"fsRowBody fsCell
212
+ fsFieldCell fsFirst fsLast fsLabelVertical fsHidden fsSpan100\" id=\"fsCell37314734\"
213
+ lang=\"en\">\n<fieldset id=\"label37314734\">\n<legend class=\"fsLabel fsRequiredLabel
214
+ fsLabelVertical\"><span>Select (Radio Buttons) - Required<span class=\"fsRequiredMarker\">*<\/span><\/span><\/legend>\n<div
215
+ class=\"fieldset-content\">\n<label class=\"fsOptionLabel vertical\" for=\"field37314734_1\"><input
216
+ type=\"radio\" id=\"field37314734_1\" name=\"field37314734\" value=\"Option1\"
217
+ class=\"fsField fsRequired vertical\" aria-required=\"true\" disabled=\"disabled\"
218
+ \/>Option1<\/label>\n<label class=\"fsOptionLabel vertical\" for=\"field37314734_2\"><input
219
+ type=\"radio\" id=\"field37314734_2\" name=\"field37314734\" value=\"Option2\"
220
+ class=\"fsField fsRequired vertical\" aria-required=\"true\" disabled=\"disabled\"
221
+ \/>Option2<\/label>\n<label class=\"fsOptionLabel vertical\" for=\"field37314734_3\"><input
222
+ type=\"radio\" id=\"field37314734_3\" name=\"field37314734\" value=\"Option3\"
223
+ class=\"fsField fsRequired vertical\" aria-required=\"true\" disabled=\"disabled\"
224
+ \/>Option3<\/label>\n<div class=\"vertical fs-clear\">\n<label class=\"fsOptionLabel
225
+ vertical\" for=\"field37314734_other\"><input type=\"radio\" id=\"field37314734_other\"
226
+ name=\"field37314734\" value=\"Other\" class=\"fsField fsRequired\" aria-required=\"true\"
227
+ disabled=\"disabled\" \/>Other:<\/label>\n<input type=\"text\" id=\"field37314734_othervalue\"
228
+ name=\"field37314734_other\" size=\"15\" class=\"fsOtherField\" aria-required=\"true\"\t \/><label
229
+ class=\"fsHiddenLabel\" style=\"display: none;\" for=\"field37314734_othervalue\">Other
230
+ Value<\/label>\n<\/div>\n<\/div><\/fieldset>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-6\"
231
+ class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell
232
+ fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell37314736\" lang=\"en\">\n<label
233
+ id=\"label37314736\" class=\"fsLabel\" for=\"field37314736\">Select (Dropdown
234
+ List) <\/label>\n<select id=\"field37314736\" name=\"field37314736\"
235
+ size=\"1\" class=\"fsField\">\n<option value=\"Option1\">Option1<\/option>\n<option
236
+ value=\"Option2\">Option2<\/option>\n<option value=\"Option3\">Option3<\/option>\n<\/select>\n<\/div>\n<\/div>\n<div
237
+ id=\"fsRow2178204-7\" class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div
238
+ class=\"fsRowBody fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsHidden
239
+ fsSpan100\" id=\"fsCell40952921\" lang=\"en\">\n<label id=\"label40952921\"
240
+ class=\"fsLabel\" for=\"field40952921\">Show Dropdown (if Dropdown is not
241
+ Option1) <\/label>\n<select id=\"field40952921\" name=\"field40952921\"
242
+ size=\"1\" class=\"fsField\" disabled=\"disabled\">\n<option value=\"Option1\">Option1<\/option>\n<option
243
+ value=\"Option2\">Option2<\/option>\n<option value=\"Option3\">Option3<\/option>\n<\/select>\n<\/div>\n<\/div>\n<div
244
+ id=\"fsRow2178204-8\" class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div
245
+ class=\"fsRowBody fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsHidden
246
+ fsSpan100\" id=\"fsCell37314733\" lang=\"en\">\n<fieldset id=\"label37314733\">\n<legend
247
+ class=\"fsLabel fsLabelVertical\"><span>Select (Checkbox)<\/span><\/legend>\n<div
248
+ class=\"fieldset-content\">\n<label class=\"fsOptionLabel vertical\" for=\"field37314733_1\"><input
249
+ type=\"checkbox\" id=\"field37314733_1\" name=\"field37314733[]\" value=\"Option1\"
250
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option1<\/label>\n<label
251
+ class=\"fsOptionLabel vertical\" for=\"field37314733_2\"><input type=\"checkbox\"
252
+ id=\"field37314733_2\" name=\"field37314733[]\" value=\"Option2\" class=\"fsField
253
+ vertical\" disabled=\"disabled\" \/>Option2<\/label>\n<label class=\"fsOptionLabel
254
+ vertical\" for=\"field37314733_3\"><input type=\"checkbox\" id=\"field37314733_3\"
255
+ name=\"field37314733[]\" value=\"Option3\" class=\"fsField vertical\" disabled=\"disabled\"
256
+ \/>Option3<\/label>\n<div class=\"vertical fs-clear\">\n<label class=\"fsOptionLabel
257
+ vertical\" style=\"margin-right: 5px;\" for=\"field37314733_other\"><input
258
+ type=\"checkbox\" id=\"field37314733_other\" name=\"field37314733[]\" value=\"Other\"
259
+ class=\"fsField\" disabled=\"disabled\" \/>Other:<\/label>\n<input type=\"text\"
260
+ id=\"field37314733_othervalue\" name=\"field37314733_other\" size=\"15\" class=\"fsOtherField\"\t \/><label
261
+ class=\"hidden\" for=\"field37314733_othervalue\">Other Value<\/label>\n<\/div>\n<\/div><\/fieldset>\n<\/div>\n<\/div>\n<div
262
+ id=\"fsRow2178204-9\" class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody
263
+ fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell41111633\"
264
+ lang=\"en\">\n<fieldset id=\"label41111633\">\n<legend class=\"fsLabel fsLabelVertical\"><span>Here''s
265
+ a checkbox question that is just so long the text goes on and on and on. I''m
266
+ just going to keep typing until the question is so large that some of the
267
+ text is no longer readable because it goes off the screen. How is a user supposed
268
+ to answers a question like this when they can''t see most of it. This is particularly
269
+ problematic on small iOS phones. So I''ll just type for a little while longer
270
+ until this text is so large that it 100%, definitely, positively will take
271
+ up at least the whole screen. Let''s hope this is enough.<\/span><\/legend>\n<div
272
+ class=\"fieldset-content\">\n<label class=\"fsOptionLabel vertical\" for=\"field41111633_1\"><input
273
+ type=\"checkbox\" id=\"field41111633_1\" name=\"field41111633[]\" value=\"Option1\"
274
+ class=\"fsField vertical\" \/>Option1<\/label>\n<label class=\"fsOptionLabel
275
+ vertical\" for=\"field41111633_2\"><input type=\"checkbox\" id=\"field41111633_2\"
276
+ name=\"field41111633[]\" value=\"Option2\" class=\"fsField vertical\" \/>Option2<\/label>\n<label
277
+ class=\"fsOptionLabel vertical\" for=\"field41111633_3\"><input type=\"checkbox\"
278
+ id=\"field41111633_3\" name=\"field41111633[]\" value=\"Option3\" class=\"fsField
279
+ vertical\" \/>Option3<\/label>\n<\/div><\/fieldset>\n<\/div>\n<\/div>\n<div
280
+ id=\"fsRow2178204-10\" class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div
281
+ class=\"fsRowBody fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsHidden
282
+ fsSpan100\" id=\"fsCell41111634\" lang=\"en\">\n<fieldset id=\"label41111634\">\n<legend
283
+ class=\"fsLabel fsLabelVertical\"><span>Here''s a checkbox question that has
284
+ really long answers to see how they look on the screen<\/span><\/legend>\n<div
285
+ class=\"fieldset-content\">\n<label class=\"fsOptionLabel vertical\" for=\"field41111634_1\"><input
286
+ type=\"checkbox\" id=\"field41111634_1\" name=\"field41111634[]\" value=\"Option1
287
+ - the answer to this is long enough that it spreads over multiple lines\"
288
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option1 - the answer to
289
+ this is long enough that it spreads over multiple lines<\/label>\n<label class=\"fsOptionLabel
290
+ vertical\" for=\"field41111634_2\"><input type=\"checkbox\" id=\"field41111634_2\"
291
+ name=\"field41111634[]\" value=\"Option2 - the answer to this is long enough
292
+ that it spreads over multiple lines\" class=\"fsField vertical\" disabled=\"disabled\"
293
+ \/>Option2 - the answer to this is long enough that it spreads over multiple
294
+ lines<\/label>\n<label class=\"fsOptionLabel vertical\" for=\"field41111634_3\"><input
295
+ type=\"checkbox\" id=\"field41111634_3\" name=\"field41111634[]\" value=\"Option3
296
+ - the answer to this is long enough that it spreads over multiple lines\"
297
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option3 - the answer to
298
+ this is long enough that it spreads over multiple lines<\/label>\n<label class=\"fsOptionLabel
299
+ vertical\" for=\"field41111634_4\"><input type=\"checkbox\" id=\"field41111634_4\"
300
+ name=\"field41111634[]\" value=\"Option4 - the answer to this is long enough
301
+ that it spreads over multiple lines\" class=\"fsField vertical\" disabled=\"disabled\"
302
+ \/>Option4 - the answer to this is long enough that it spreads over multiple
303
+ lines<\/label>\n<label class=\"fsOptionLabel vertical\" for=\"field41111634_5\"><input
304
+ type=\"checkbox\" id=\"field41111634_5\" name=\"field41111634[]\" value=\"Option5
305
+ - the answer to this is long enough that it spreads over multiple lines\"
306
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option5 - the answer to
307
+ this is long enough that it spreads over multiple lines<\/label>\n<label class=\"fsOptionLabel
308
+ vertical\" for=\"field41111634_6\"><input type=\"checkbox\" id=\"field41111634_6\"
309
+ name=\"field41111634[]\" value=\"Option6 - the answer to this is long enough
310
+ that it spreads over multiple lines\" class=\"fsField vertical\" disabled=\"disabled\"
311
+ \/>Option6 - the answer to this is long enough that it spreads over multiple
312
+ lines<\/label>\n<label class=\"fsOptionLabel vertical\" for=\"field41111634_7\"><input
313
+ type=\"checkbox\" id=\"field41111634_7\" name=\"field41111634[]\" value=\"Option7
314
+ - the answer to this is long enough that it spreads over multiple lines\"
315
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option7 - the answer to
316
+ this is long enough that it spreads over multiple lines<\/label>\n<label class=\"fsOptionLabel
317
+ vertical\" for=\"field41111634_8\"><input type=\"checkbox\" id=\"field41111634_8\"
318
+ name=\"field41111634[]\" value=\"Option8 - the answer to this is long enough
319
+ that it spreads over multiple lines\" class=\"fsField vertical\" disabled=\"disabled\"
320
+ \/>Option8 - the answer to this is long enough that it spreads over multiple
321
+ lines<\/label>\n<label class=\"fsOptionLabel vertical\" for=\"field41111634_9\"><input
322
+ type=\"checkbox\" id=\"field41111634_9\" name=\"field41111634[]\" value=\"Option9
323
+ - the answer to this is long enough that it spreads over multiple lines\"
324
+ class=\"fsField vertical\" disabled=\"disabled\" \/>Option9 - the answer to
325
+ this is long enough that it spreads over multiple lines<\/label>\n<\/div><\/fieldset>\n<\/div>\n<\/div>\n<div
326
+ id=\"fsRow2178204-11\" class=\"fsRow fsFieldRow fsLastRow fsHidden\">\n<div
327
+ class=\"fsRowBody fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsHidden
328
+ fsSpan100\" id=\"fsCell37314784\" lang=\"en\">\n<label id=\"label37314784\"
329
+ class=\"fsLabel\" for=\"field37314784\">Number <\/label>\n<span
330
+ class=\"fsCurrency\"><\/span>\n<input type=\"number\" step=\"any\" id=\"field37314784\"
331
+ name=\"field37314784\" class=\"fsField fsFormatNumber fsNumberDecimals-2\"
332
+ disabled=\"disabled\" \/>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-12\" class=\"fsRow
333
+ fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell fsFirst
334
+ fsLast fsLabelVertical fsSpan100\" id=\"fsCell37314745\" lang=\"en\">\n<label
335
+ id=\"label37314745\" class=\"fsLabel fsRequiredLabel\" for=\"field37314745\">Number
336
+ Slider<span class=\"fsRequiredMarker\">*<\/span> <\/label>\n<div>\n<div
337
+ id=\"field37314745-slider\" class=\"fsSliderDiv\"><\/div>\n<div id=\"field37314745-slidervalue\"
338
+ class=\"fsSliderValue\"><\/div>\n<\/div>\n<div style=\"clear:both\"><\/div>\n<input
339
+ type=\"text\" style=\"display:none\" id=\"field37314745\" name=\"field37314745\"
340
+ class=\"fsSlider fsNumberMin-0 fsNumberMax-10 fsNumberDecimals-0 fsRequired\"
341
+ aria-required=\"true\" \/>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-13\"
342
+ class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell
343
+ fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell37383929\" lang=\"en\">\n<span
344
+ id=\"label37383929\" class=\"fsLabel\">Name<\/span>\n<div class=\"fsSubFieldGroup\">\n<div
345
+ class=\"fsSubField fsNameFirst\">\n<input type=\"text\" id=\"field37383929-first\"
346
+ name=\"field37383929-first\" size=\"50\" value=\"\" class=\"fsField fsFieldName\"
347
+ \/>\n<label class=\"fsSupporting\" for=\"field37383929-first\">First Name<\/label>\n<\/div>\n<div
348
+ class=\"fsSubField fsNameLast\">\n<input type=\"text\" id=\"field37383929-last\"
349
+ name=\"field37383929-last\" size=\"50\" value=\"\" class=\"fsField fsFieldName\"
350
+ \/>\n<label class=\"fsSupporting\" for=\"field37383929-last\">Last Name<\/label>\n<\/div>\n<\/div>\n<div
351
+ class=\"clear\"><\/div>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-14\" class=\"fsRow
352
+ fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell fsFirst
353
+ fsLast fsLabelVertical fsSpan100\" id=\"fsCell37314768\" lang=\"en\">\n<label
354
+ id=\"label37314768\" class=\"fsLabel\" for=\"field37314768\">Phone <\/label>\n<input
355
+ type=\"tel\" id=\"field37314768\" name=\"field37314768\" size=\"20\" value=\"\"
356
+ class=\"fsField fsFormatPhoneUK \" data-country=\"UK\" data-format=\"national\"
357
+ \/>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-15\" class=\"fsRow fsFieldRow
358
+ fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell fsFirst fsLast fsLabelVertical
359
+ fsSpan100\" id=\"fsCell37383914\" lang=\"en\">\n<label id=\"label37383914\"
360
+ class=\"fsLabel\" for=\"field37383914\">Email <\/label>\n<input
361
+ type=\"email\" id=\"field37383914\" name=\"field37383914\" size=\"50\" value=\"\"
362
+ class=\"fsField fsFormatEmail\" \/>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-16\"
363
+ class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell
364
+ fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell37314884\" lang=\"en\">\n<label
365
+ id=\"label37314884\" class=\"fsLabel\" for=\"field37314884\">Image <\/label>\n<input
366
+ type=\"file\" id=\"field37314884\" name=\"field37314884\" size=\"30\" class=\"fsField
367
+ fsUpload uploadTypes-jpg,jpeg,gif,png,bmp,tif,psd,pdf,doc,docx,xls,xlsx,txt,mp3,mp4,aac,wav,au,wmv,avi,mpg,mpeg,zip,gz,rar,z,tgz,tar,sitx\"
368
+ \/>\n<div class=\"showMobile\">File uploads may not work on some mobile devices.<\/div>\n<\/div>\n<\/div>\n<div
369
+ id=\"fsRow2178204-17\" class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody
370
+ fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell37750813\"
371
+ lang=\"en\">\n<label id=\"label37750813\" class=\"fsLabel\" for=\"field37750813\">Video <\/label>\n<input
372
+ type=\"file\" id=\"field37750813\" name=\"field37750813\" size=\"30\" class=\"fsField
373
+ fsUpload uploadTypes-avi,mpg,mpeg\" \/>\n<div class=\"showMobile\">File uploads
374
+ may not work on some mobile devices.<\/div>\n<\/div>\n<\/div>\n<div id=\"fsRow2178204-18\"
375
+ class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody fsCell fsFieldCell
376
+ fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell40559422\" lang=\"en\">\n<fieldset
377
+ id=\"matrix-field40559422-fieldset\" class=\"fsMatrixFieldset\">\n<legend
378
+ class=\"fsLabel fsLabelVertical\"><span>Matrix<\/span><\/legend>\n<table id=\"matrix-field40559422\"
379
+ class=\"fsMatrix\">\n<tr>\n<th scope=\"col\" class=\"fsMatrixColCount6\">&nbsp;<\/th>\n<th
380
+ scope=\"col\" class=\"fsMatrixLabel fsMatrixLabelColumn fsMatrixCol1 fsMatrixColCount6\">Very
381
+ Good<\/th>\n<th scope=\"col\" class=\"fsMatrixLabel fsMatrixLabelColumn fsMatrixCol2
382
+ fsMatrixColCount6\">Good<\/th>\n<th scope=\"col\" class=\"fsMatrixLabel fsMatrixLabelColumn
383
+ fsMatrixCol1 fsMatrixColCount6\">Fair<\/th>\n<th scope=\"col\" class=\"fsMatrixLabel
384
+ fsMatrixLabelColumn fsMatrixCol2 fsMatrixColCount6\">Poor<\/th>\n<th scope=\"col\"
385
+ class=\"fsMatrixLabel fsMatrixLabelColumn fsMatrixCol1 fsMatrixColCount6\">Very
386
+ Poor<\/th>\n<\/tr>\n<tr>\n<th class=\"fsMatrixLabel fsMatrixLabelRow\" scope=\"row\">Item
387
+ 1<\/th>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label class=\"hidden\"
388
+ for=\"field40559422-1-1\">Matrix: Item 1 (Very Good)<\/label>\n<input type=\"radio\"
389
+ id=\"field40559422-1-1\" name=\"field40559422-1\" value=\"Item 1 = Very Good\"
390
+ class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol2 fsMatrixColCount6\">\n<label
391
+ class=\"hidden\" for=\"field40559422-1-2\">Item 1 (Good)<\/label>\n<input
392
+ type=\"radio\" id=\"field40559422-1-2\" name=\"field40559422-1\" value=\"Item
393
+ 1 = Good\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
394
+ class=\"hidden\" for=\"field40559422-1-3\">Item 1 (Fair)<\/label>\n<input
395
+ type=\"radio\" id=\"field40559422-1-3\" name=\"field40559422-1\" value=\"Item
396
+ 1 = Fair\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol2 fsMatrixColCount6\">\n<label
397
+ class=\"hidden\" for=\"field40559422-1-4\">Item 1 (Poor)<\/label>\n<input
398
+ type=\"radio\" id=\"field40559422-1-4\" name=\"field40559422-1\" value=\"Item
399
+ 1 = Poor\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
400
+ class=\"hidden\" for=\"field40559422-1-5\">Item 1 (Very Poor)<\/label>\n<input
401
+ type=\"radio\" id=\"field40559422-1-5\" name=\"field40559422-1\" value=\"Item
402
+ 1 = Very Poor\" class=\"fsField\"\/>\n<\/td>\n<\/tr>\n<tr>\n<th class=\"fsMatrixLabel
403
+ fsMatrixLabelRow\" scope=\"row\">Item 2<\/th>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
404
+ class=\"hidden\" for=\"field40559422-2-1\">Item 2 (Very Good)<\/label>\n<input
405
+ type=\"radio\" id=\"field40559422-2-1\" name=\"field40559422-2\" value=\"Item
406
+ 2 = Very Good\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol2 fsMatrixColCount6\">\n<label
407
+ class=\"hidden\" for=\"field40559422-2-2\">Item 2 (Good)<\/label>\n<input
408
+ type=\"radio\" id=\"field40559422-2-2\" name=\"field40559422-2\" value=\"Item
409
+ 2 = Good\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
410
+ class=\"hidden\" for=\"field40559422-2-3\">Item 2 (Fair)<\/label>\n<input
411
+ type=\"radio\" id=\"field40559422-2-3\" name=\"field40559422-2\" value=\"Item
412
+ 2 = Fair\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol2 fsMatrixColCount6\">\n<label
413
+ class=\"hidden\" for=\"field40559422-2-4\">Item 2 (Poor)<\/label>\n<input
414
+ type=\"radio\" id=\"field40559422-2-4\" name=\"field40559422-2\" value=\"Item
415
+ 2 = Poor\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
416
+ class=\"hidden\" for=\"field40559422-2-5\">Item 2 (Very Poor)<\/label>\n<input
417
+ type=\"radio\" id=\"field40559422-2-5\" name=\"field40559422-2\" value=\"Item
418
+ 2 = Very Poor\" class=\"fsField\"\/>\n<\/td>\n<\/tr>\n<tr>\n<th class=\"fsMatrixLabel
419
+ fsMatrixLabelRow\" scope=\"row\">Item 3<\/th>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
420
+ class=\"hidden\" for=\"field40559422-3-1\">Item 3 (Very Good)<\/label>\n<input
421
+ type=\"radio\" id=\"field40559422-3-1\" name=\"field40559422-3\" value=\"Item
422
+ 3 = Very Good\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol2 fsMatrixColCount6\">\n<label
423
+ class=\"hidden\" for=\"field40559422-3-2\">Item 3 (Good)<\/label>\n<input
424
+ type=\"radio\" id=\"field40559422-3-2\" name=\"field40559422-3\" value=\"Item
425
+ 3 = Good\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
426
+ class=\"hidden\" for=\"field40559422-3-3\">Item 3 (Fair)<\/label>\n<input
427
+ type=\"radio\" id=\"field40559422-3-3\" name=\"field40559422-3\" value=\"Item
428
+ 3 = Fair\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol2 fsMatrixColCount6\">\n<label
429
+ class=\"hidden\" for=\"field40559422-3-4\">Item 3 (Poor)<\/label>\n<input
430
+ type=\"radio\" id=\"field40559422-3-4\" name=\"field40559422-3\" value=\"Item
431
+ 3 = Poor\" class=\"fsField\"\/>\n<\/td>\n<td class=\"fsMatrixCol1 fsMatrixColCount6\">\n<label
432
+ class=\"hidden\" for=\"field40559422-3-5\">Item 3 (Very Poor)<\/label>\n<input
433
+ type=\"radio\" id=\"field40559422-3-5\" name=\"field40559422-3\" value=\"Item
434
+ 3 = Very Poor\" class=\"fsField\"\/>\n<\/td>\n<\/tr>\n<\/table>\n<\/fieldset>\n<\/div>\n<\/div>\n<div
435
+ id=\"fsRow2178204-19\" class=\"fsRow fsFieldRow fsLastRow\">\n<div class=\"fsRowBody
436
+ fsCell fsFieldCell fsFirst fsLast fsLabelVertical fsSpan100\" id=\"fsCell37314777\"
437
+ aria-describedby=\"fsSupporting37314777\" lang=\"en\">\n<label id=\"label37314777\"
438
+ class=\"fsLabel\" for=\"field37314777\">Signature <\/label>\n<!--[if
439
+ lt IE 9]>\n<script type=\"text\/javascript\" src=\"\/\/formstack.com\/forms\/js\/3\/jsignature\/flashcanvas.js\"><\/script>\n<![endif]-->\n<!--[if
440
+ gte IE 9]>\n<script type=\"text\/javascript\">\nif (document.documentMode
441
+ < 9){\nvar url = ''<script type=\"text\/javascript\" src=\"'' + ''\/\/formstack.com\/forms\/''
442
+ + ''js\/3\/jsignature\/flashcanvas.js\"><\\\/script>'';\ndocument.write(url);\n}\n<\/script>\n<![endif]-->\n<div
443
+ id=\"signature37314777\" class=\"fsSignature\"><\/div>\n<div style=\"text-align:
444
+ right\"><a href=\"javascript:\/\/\" class=\"fsSignatureClear\" id=\"signatureClear37314777\">[clear]<\/a><\/div>\n<input
445
+ type=\"hidden\" id=\"field37314777\" name=\"field37314777\" class=\"fsField\"
446
+ \/>\n<div id=\"fsSupporting37314777\" class=\"fsSupporting\">Use your mouse
447
+ or finger to draw your signature above<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div
448
+ id=\"fsSubmit2178204\" class=\"fsSubmit fsPagination\">\n<button type=\"button\"
449
+ id=\"fsPreviousButton2178204\" class=\"fsPreviousButton\" value=\"Previous
450
+ Page\" style=\"display:none;\"><span class=\"fsFull\">Previous<\/span><span
451
+ class=\"fsSlim\">&larr;<\/span><\/button>\n<button type=\"button\" id=\"fsNextButton2178204\"
452
+ class=\"fsNextButton\" value=\"Next Page\" style=\"display:none;\"><span class=\"fsFull\">Next<\/span><span
453
+ class=\"fsSlim\">&rarr;<\/span><\/button>\n<input id=\"fsSubmitButton2178204\"\nclass=\"fsSubmitButton\"\nstyle=\"display:
454
+ block;\"\ntype=\"submit\"\nvalue=\"Submit Answers\" \/>\n<div class=\"clear\"><\/div>\n<\/div>\n<script
455
+ type=\"text\/javascript\" src=\"\/\/static.formstack.com\/forms\/js\/3\/jquery.min.js\"><\/script>\n<script
456
+ type=\"text\/javascript\" src=\"\/\/static.formstack.com\/forms\/js\/3\/jquery-ui.min.js\"><\/script>\n<script
457
+ type=\"text\/javascript\" src=\"\/\/static.formstack.com\/forms\/js\/3\/scripts.js\"><\/script>\n<script
458
+ type=\"text\/javascript\" src=\"\/\/static.formstack.com\/forms\/js\/3\/analytics.js\"><\/script>\n<script
459
+ type=\"text\/javascript\" src=\"\/\/static.formstack.com\/forms\/js\/3\/jsignature\/jSignature.min.js\"><\/script>\n<script
460
+ type=\"text\/javascript\" src=\"\/\/static.formstack.com\/forms\/js\/3\/google-phone-lib.js\"><\/script>\n<script
461
+ type=\"text\/javascript\">\nif(window.addEventListener) {\nwindow.addEventListener(''load'',
462
+ loadFormstack, false);\n} else if(window.attachEvent) {\nwindow.attachEvent(''onload'',
463
+ loadFormstack);\n} else {\nloadFormstack();\n}\nfunction loadFormstack() {\nvar
464
+ form2178204 = new Formstack.Form(2178204, ''https:\/\/www.formstack.com\/forms\/'');\nform2178204.checks.push({target:
465
+ ''37314714'', action: ''Show'', bool: ''AND'', fields: [''41111633''],checks:
466
+ [{field: ''41111633'', condition: ''=='', option: ''Option1''}]});\nform2178204.checks.push({target:
467
+ ''44337087'', action: ''Show'', bool: ''AND'', fields: [''37314784''],checks:
468
+ [{field: ''37314784'', condition: ''=='', option: ''0''}]});\nform2178204.checks.push({target:
469
+ ''37314734'', action: ''Show'', bool: ''AND'', fields: [''37314784''],checks:
470
+ [{field: ''37314784'', condition: ''=='', option: ''0''}]});\nform2178204.checks.push({target:
471
+ ''40952921'', action: ''Show'', bool: ''AND'', fields: [''37314736''],checks:
472
+ [{field: ''37314736'', condition: ''!='', option: ''Option1''}]});\nform2178204.checks.push({target:
473
+ ''37314733'', action: ''Show'', bool: ''AND'', fields: [''37314736''],checks:
474
+ [{field: ''37314736'', condition: ''=='', option: ''Option3''}]});\nform2178204.checks.push({target:
475
+ ''41111634'', action: ''Show'', bool: ''AND'', fields: [''41111633''],checks:
476
+ [{field: ''41111633'', condition: ''=='', option: ''Option1''}]});\nform2178204.checks.push({target:
477
+ ''37314784'', action: ''Show'', bool: ''AND'', fields: [''37314745''],checks:
478
+ [{field: ''37314745'', condition: ''=='', option: ''0''}]});\nform2178204.logicFields
479
+ = [''37314745'',''41111633'',''37314736'',''37314784''];\nform2178204.calcFields
480
+ = [];\nform2178204.init();\nform2178204.plugins.analytics = new Formstack.Analytics(''https:\/\/www.formstack.com'',
481
+ 2178204, form2178204);\nform2178204.plugins.analytics.trackTouch();\nform2178204.plugins.analytics.trackBottleneck();\nwindow.form2178204
482
+ = form2178204;\n};\n<\/script>\n<\/form>\n<img src=\"https:\/\/www.formstack.com\/forms\/count.php?2178204\"
483
+ alt=\"Form View Counter\" width=\"1\" height=\"1\" border=\"0\" \/>\n<div
484
+ class=\"fs-ngdialog fs-modal-medium fs-form-dialog fs-form-dialog--hidden\">\n<div
485
+ class=\"fs-ngdialog-overlay\"><\/div>\n<div class=\"fs-ngdialog-content\">\n<div
486
+ class=\"fs-modal__top fs-form-dialog__title\"><\/div>\n<div class=\"fs-modal__middle\">\n<div
487
+ class=\"fs-form-dialog__message\"><\/div>\n<label class=\"hidden\"\nfor=\"fsSaveResumePassword\">Enter
488
+ your save and resume password<\/label>\n<input type=\"password\"\nid=\"fsSaveResumePassword\"\nclass=\"fs-form-input
489
+ fs-form-dialog__password fs-form-dialog--hidden fs--mt20\" placeholder=\"Enter
490
+ your save and resume password\">\n<\/div>\n<div class=\"fs-modal__bottom\">\n<a
491
+ class=\"fs-form-dialog__cancel fs-btn2 fs-btn2--size_medium fs-btn2--style_edit-dark\"
492
+ title=\"Cancel\">\n<div class=\"fs-btn2__content\">\n<div class=\"fs-btn2__text\">\n<span
493
+ class=\"fs-form-dialog__button-text\">Cancel<\/span>\n<\/div>\n<\/div>\n<\/a>\n<a
494
+ class=\"fs-form-dialog__confirm fs-btn2 fs-btn2--size_medium fs-btn2--style_create
495
+ fs--float-right\" title=\"Confirm\">\n<div class=\"fs-btn2__content\">\n<div
496
+ class=\"fs-btn2__text\">\n<span class=\"fs-form-dialog__button-text\">Confirm<\/span>\n<\/div>\n<\/div>\n<\/a>\n<\/div>\n<\/div>\n<\/div>\n<\/body>\n<\/html>","fields":[{"id":"37314714","label":"Short
497
+ Answer","hide_label":"0","description":"Here is a sample tooltip","name":"short_answer","type":"text","options":"","required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"0","default":"","text_size":50,"maxlength":0,"placeholder":"What
498
+ is your short answer?"},{"id":"37314722","label":"Longer Text Answer","hide_label":"0","description":"","name":"longer_text_answer","type":"textarea","options":"","required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"1","default":"","rows":10,"cols":50,"maxlength":0,"placeholder":""},{"id":"40963803","label":"Date\/Time","hide_label":"0","description":"","name":"datetime","type":"datetime","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"2","default":{"default":null},"date_format":"M
499
+ d, Y","time_format":"h:i A","year_minus":5,"year_plus":5},{"id":"44337087","label":"Select
500
+ (Radio Buttons) - Optional","hide_label":"0","description":"","name":"select_radio_buttons__optional","type":"radio","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"3","default":"","option_layout":"vertical","option_other":"0","randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314734","label":"Select
501
+ (Radio Buttons) - Required","hide_label":"0","description":"","name":"select_radio_buttons__required","type":"radio","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"4","default":"","option_layout":"vertical","option_other":"1","randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314736","label":"Select
502
+ (Dropdown List)","hide_label":"0","description":"","name":"select_dropdown_list","type":"select","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"5","default":"","select_size":1,"option_layout":"vertical","option_other":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"40952921","label":"Show
503
+ Dropdown (if Dropdown is not Option1)","hide_label":"0","description":"","name":"show_dropdown_if_dropdown_is_not_option1","type":"select","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"6","default":"","select_size":1,"option_layout":"vertical","option_other":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314733","label":"Select
504
+ (Checkbox)","hide_label":"0","description":"","name":"select_checkbox","type":"checkbox","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"7","default":"","option_layout":"vertical","option_other":"1","option_checkall":"0","randomize_options":0,"option_store":"value","option_show_values":0},{"id":"41111633","label":"Here''s
505
+ a checkbox question that is just so long the text goes on and on and on. I''m
506
+ just going to keep typing until the question is so large that some of the
507
+ text is no longer readable because it goes off the screen. How is a user supposed
508
+ to answers a question like this when they can''t see most of it. This is particularly
509
+ problematic on small iOS phones. So I''ll just type for a little while longer
510
+ until this text is so large that it 100%, definitely, positively will take
511
+ up at least the whole screen. Let''s hope this is enough.","hide_label":"0","description":"","name":"heres_a_checkbox_question_that_is_just_so_long_the_text_goes_on_and_on_and_on_im_just_going_to_keep_typing_until_the_question_is_so_large_that_some_of_the_text_is_no_longer_readable_because_it_goes_off_the_screen_how_is_a_user_supposed_to_answers_a_question_like_this_when_they_cant_see_most_of_it_this_is_particularly_problematic_on_small_ios_phones_so_ill_just_type_for_a_little_while_longer_until_this_text_is_so_large_that_it_100_definitely_positively_will_take_up_at_least_the_whole_screen_lets_hope_this_is_enough","type":"checkbox","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"8","default":"","option_layout":"vertical","option_other":0,"option_checkall":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"41111634","label":"Here''s
512
+ a checkbox question that has really long answers to see how they look on the
513
+ screen","hide_label":"0","description":"","name":"heres_a_checkbox_question_that_has_really_long_answers_to_see_how_they_look_on_the_screen","type":"checkbox","options":[{"label":"Option1
514
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option1
515
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option2
516
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option2
517
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option3
518
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option3
519
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option4
520
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option4
521
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option5
522
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option5
523
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option6
524
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option6
525
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option7
526
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option7
527
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option8
528
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option8
529
+ - the answer to this is long enough that it spreads over multiple lines"},{"label":"Option9
530
+ - the answer to this is long enough that it spreads over multiple lines","value":"Option9
531
+ - the answer to this is long enough that it spreads over multiple lines"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"9","default":"","option_layout":"vertical","option_other":0,"option_checkall":0,"randomize_options":0,"option_store":"value","option_show_values":0},{"id":"37314784","label":"Number","hide_label":"0","description":"","name":"number","type":"number","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"10","default":"","text_size":5,"min_value":"","max_value":"","currency":"pound","decimals":"2","slider":"0","placeholder":""},{"id":"37314745","label":"Number
532
+ Slider","hide_label":"0","description":"","name":"number_slider","type":"number","options":"","required":"1","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"11","default":"","text_size":5,"min_value":"0","max_value":"10","currency":"","decimals":"0","slider":"1","placeholder":""},{"id":"37383929","label":"Name","hide_label":"0","description":"","name":"name","type":"name","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"12","default":"","text_size":50,"show_prefix":0,"show_middle":0,"show_initial":0,"show_suffix":0},{"id":"37314768","label":"Phone","hide_label":"0","description":"","name":"phone","type":"phone","options":"","required":"0","uniq":"1","hidden":"0","readonly":"0","colspan":"1","sort":"13","default":"","text_size":"20","format":"UK","phone_format":"national","placeholder":""},{"id":"37383914","label":"Email","hide_label":"0","description":"","name":"email","type":"email","options":[{"label":"Option1","value":"Option1"},{"label":"Option2","value":"Option2"},{"label":"Option3","value":"Option3"}],"required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"14","default":"","text_size":50,"maxlength":0,"confirm":0,"placeholder":""},{"id":"37314884","label":"Image","hide_label":"0","description":"","name":"image","type":"file","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"15","default":"","text_size":"30","file_types":"jpg,jpeg,gif,png,bmp,tif,psd,pdf,doc,docx,xls,xlsx,txt,mp3,mp4,aac,wav,au,wmv,avi,mpg,mpeg,zip,gz,rar,z,tgz,tar,sitx"},{"id":"37750813","label":"Video","hide_label":"0","description":"","name":"video","type":"file","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"16","default":"","text_size":"30","file_types":"avi,mpg,mpeg"},{"id":"40559422","label":"Matrix","hide_label":"0","description":"","name":"matrix","type":"matrix","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"17","default":{"Item
533
+ 1":[],"Item 2":[],"Item 3":[]},"row_choices":"Item 1\nItem 2\nItem 3","column_choices":"Very
534
+ Good\nGood\nFair\nPoor\nVery Poor","one_per_row":"1","one_per_column":"0","randomize_rows":"0"},{"id":"37314777","label":"Signature","hide_label":"0","description":"Use
535
+ your mouse or finger to draw your signature above","name":"signature","type":"signature","options":"","required":"0","uniq":"0","hidden":"0","readonly":"0","colspan":"1","sort":"18","default":""}]}'
536
+ http_version:
537
+ recorded_at: Fri, 29 Jul 2016 14:12:03 GMT
538
+ recorded_with: VCR 3.0.3