Sha256: c90524d4ec28ff22da665fcdbde66c1657dbaad1d90a41e0be96dcf8dd648fd8
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
<%= form_for([@members_contact.main, @members_contact], url: members_main_contact_path, method: :patch ) do |f| %> <!-- PHC-Notifi Render Validation --> <%= render 'phcnotifi/validations', :object => @members_contact %> <div class="form-group field_with_errors"> <label><%= f.label :mcaddressl1, "Mailing Address Line1" %></label> <%= f.text_field :mcaddressl1, class: "form-control", placeholder: "Mailing Street Address" %> </div> <div class="form-group field_with_errors"> <label><%= f.label :mcaddressl2, "Mailing Address Line2" %></label> <%= f.text_field :mcaddressl2, class: "form-control", placeholder: "Mailing Address POBox" %> </div> <div class="form-group field_with_errors"> <label><%= f.label :mccity, "City" %></label> <%= f.text_field :mccity, class: "form-control", placeholder: "Mailing City" %> </div> <div class="form-group field_with_errors"> <label><%= f.label :mcprovince, "Province or State" %></label> <%= f.text_field :mcprovince, class: "form-control", placeholder: "Mailing Province or State" %> </div> <div class="form-group field_with_errors"> <label><%= f.label :mccountry, "Country" %></label> <%= country_select("members_contact", "mccountry", { priority_countries: ["CA", "GB", "FR", "US"], selected: "CA" }, { class: 'form-control', data: { attribute: "value" } }) %> </div> <div class="form-group field_with_errors"> <label><%= f.label :mcpostalcode, "PostalCode" %></label> <%= f.text_field :mcpostalcode, class: "form-control", placeholder: "Mailing PostalCode" %> </div> <div class="form-group"> <label><%= f.label :mctype, "Address Type" %></label> <%= f.select :mctype, [['Billing Address','Billing'],['Street Address','Street'],['Mailing Address','Mailing']], { class: 'form-control' } %> </div> <div class="actions"> <%= f.submit "Submit", class: "btn blue-hoki" %> </div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcmemberspro-5.1.3 | app/views/phcmemberspro/members/contacts/_formpatch.html.erb |