From 4a5de410659744e979a92311fd2a259130dbbac5 Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Tue, 6 Feb 2024 13:04:56 -0600 Subject: [PATCH] Remove unused form --- app/views/accounts/new_credit.html.erb | 37 -------------------------- 1 file changed, 37 deletions(-) delete mode 100644 app/views/accounts/new_credit.html.erb diff --git a/app/views/accounts/new_credit.html.erb b/app/views/accounts/new_credit.html.erb deleted file mode 100644 index 12fdb371..00000000 --- a/app/views/accounts/new_credit.html.erb +++ /dev/null @@ -1,37 +0,0 @@ -
- <%= link_to new_account_path, class: "" do %> - <%= inline_svg_tag('icon-arrow-left.svg', class: 'text-gray-500 fill-current') %> - <% end %> -

Enter credit card account

-
- -<%= form_with model: @account, url: accounts_path, scope: :account, html: { class: "space-y-4" } do |f| %> - <%= f.hidden_field :type, value: "Credit" %> - -
- <%# Optional %> - - <%= f.text_field :name, placeholder: "Account name", required: 'required', class: "p-0 mt-1 bg-transparent border-none opacity-50 focus:outline-none focus:ring-0 focus-within:opacity-100" %> -
- -
- Optional - -
- <%= f.number_field :credit_limit, placeholder: "$0.00", in: 0.00..100000000.00, class: "p-0 mt-1 bg-transparent border-none opacity-50 focus:outline-none focus:ring-0 focus-within:opacity-100" %> -
-
- -
- -
- <%= f.number_field :balance, placeholder: "$0.00", in: 0.00..100000000.00, required: 'required', class: "p-0 mt-1 bg-transparent border-none opacity-50 focus:outline-none focus:ring-0 focus-within:opacity-100" %> -
-
- -
- -
-<% end %> \ No newline at end of file