Sha256: 2b6b072aefa147412dbc77722e7986f42a2fa8472c9182901f295238faba3646
Contents?: true
Size: 1.87 KB
Versions: 16
Compression:
Stored size: 1.87 KB
Contents
<!-- Form - Member - Profile --> <%= form_with(model: @member_profile, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @member_profile %> <!-- PHCNotifi Render Validation --> <!-- Form Input Fields --> <div class="form-group field_with_errors"> <%= form.label :member_profile_first_name, "First Name*" %> <%= form.text_field :member_profile_first_name, placeholder: "First Name", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :member_profile_last_name, "Last Name*" %> <%= form.text_field :member_profile_last_name, placeholder: "Last Name", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :member_profile_title, "Job Title" %> <%= form.text_field :member_profile_title, placeholder: "Job Title/Salutation", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :member_profile_email, "Contact Email Address*" %> <%= form.text_field :member_profile_email, placeholder: "Contact Email (Will Remain Private)", class: "form-control masked" %> </div> <div class="form-group field_with_errors"> <%= form.label :member_profile_phone, "Contact Phone Number*" %> <%= form.text_field :member_profile_phone, placeholder: "Contact Phone Number (Will Remain Private)", data: {format: "(999) 999-9999", placeholder: "x"}, class: "form-control masked" %> </div> <div class="form-group field_with_errors"> <%= form.label :member_profile_notes, "Member" %> <%= form.text_area :member_profile_notes, placeholder: "Member Notes", class: "form-control" %> </div> <!-- Form Input Fields --> <!-- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- For Submition Button --> <% end %> <!-- Form - Member - Profile -->
Version data entries
16 entries across 16 versions & 1 rubygems