Donate directly with Bitcoin

Open-source money for open-source services.

<%= render ModalComponent.new(show_close_button: false) do %>

Your contribution

<%= form_with(url: contributions_donations_url, method: :post) do |f| %> <%= f.hidden_field :donation_method, value: "btcpay" %>
<%= f.number_field :amount, required: true %> <%= f.select :currency, options_for_select([ ["EUR", "EUR"], ["USD", "USD"], ["sats", "sats"] ], selected: "EUR"), class: "flex-none" %>
<%= render FormElements::FieldsetComponent.new(tag: "div", title: "Public name") do %> <%= f.text_field :public_name, class: "w-full", placeholder: "Anonymous" %> <% end %>

<%= f.submit 'Continue', data: { turbo: false }, class: "btn-md btn-blue w-full" %>

<% end %>
<% end %>