16 lines
324 B
Plaintext
16 lines
324 B
Plaintext
= simple_form_for(@token) do |f|
|
|
= f.error_notification
|
|
|
|
.form-inputs
|
|
= f.input :canister_id
|
|
= f.input :standard
|
|
= f.input :symbol
|
|
= f.input :name
|
|
= f.input :total_supply
|
|
= f.input :decimals
|
|
= f.input :transfer_fee
|
|
= f.input :logo_url
|
|
|
|
.form-actions
|
|
= f.button :submit, "Add Token"
|