alt_top_up.rb

 1form!
 2title "Buy Account Credit"
 3
 4instructions(
 5	"Besides credit cards, we support payment by Bitcoin, postal mail, " \
 6	"or in Canada by Interac e-Transfer."
 7)
 8
 9field(
10	type: "fixed",
11	value: "Current balance: $#{'%.4f' % @balance}"
12)
13
14render "alt_top_up/mailing_address"
15render "alt_top_up/interac" if @currency == :CAD
16render "alt_top_up/btc_addresses"
17
18field(
19	var: "http://jabber.org/protocol/commands#actions",
20	label: "Action",
21	type: "list-single",
22	options: [
23		{ label: "Done", value: "complete" },
24		{ label: "Add new Bitcoin address to account", value: "BTC" },
25		{ label: "Get single-use Monero address", value: "XMR" },
26		{ label: "Get single-use Ethereum address", value: "ETH" }
27	],
28	value: "complete"
29)