buy_number.rb

 1form!
 2
 3title "Purchase Number"
 4
 5instructions <<~I
 6	You've selected #{@tel} as your JMP number.
 7	This number has a one-time price of $#{'%.2f' % @tel.price}.
 8	(If you'd like to pay in another cryptocurrency, currently we recommend using a service like simpleswap.io, morphtoken.com, changenow.io, or godex.io.)
 9I
10
11field(
12	var: "activation_method",
13	type: "list-single",
14	label: "Activate using",
15	required: true,
16	options: [
17		{
18			value: "credit_card",
19			label: "Credit Card"
20		},
21		{
22			value: "bitcoin",
23			label: "Bitcoin"
24		},
25		{
26			value: "bch",
27			label: "Bitcoin Cash"
28		}
29	]
30)