customer_picker.rb
 1form!
 2title "Pick Customer"
 3
 4instructions(
 5	"Tell us something about the customer and we'll try to get more " \
 6	"information for you"
 7)
 8
 9if @notice
10	field(
11		type: "fixed",
12		value: @notice
13	)
14end
15
16field(
17	var: "q",
18	type: "text-single",
19	label: "Something about the customer",
20	description: "Supported things include: customer ID, JID, phone number"
21)