Sha256: 150e5de316c398e3cb4ef70974c48644d000f42b9586e98a39f404c5c6558eb7
Contents?: true
Size: 1.92 KB
Versions: 4
Compression:
Stored size: 1.92 KB
Contents
<!-- -PHCDEV- Form - Member - Profile --> <%= form_with(model: @member_profile, local: true) do |form| %> <!-- -PHCDEV- Form Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @member_profile %> <!-- -PHCDEV- Form Validation --> <!-- -PHCDEV- Form Input Fields --> <div class="mb-3"> <%= form.label :member_first_name, "First Name*", class: "form-label" %> <%= form.text_field :member_first_name, class: "form-control", placeholder: "First Name", class: "form-control masked" %> </div> <div class="mb-3"> <%= form.label :member_last_name, "Last Name*", class: "form-label" %> <%= form.text_field :member_last_name, class: "form-control", placeholder: "Last Name", class: "form-control masked" %> </div> <div class="mb-3"> <%= form.label :member_title, "Job Title", class: "form-label" %> <%= form.text_field :member_title, class: "form-control", placeholder: "Job Title/Salutation", class: "form-control masked" %> </div> <div class="mb-3"> <%= form.label :member_email, "Contact Email Address*", class: "form-label" %> <%= form.text_field :member_email, class: "form-control", placeholder: "Contact Email (Will Remain Private)", class: "form-control masked" %> </div> <div class="mb-3"> <%= form.label :member_phone, "Contact Phone Number*", class: "form-label" %> <%= form.text_field :member_phone, placeholder: "Contact Phone Number (Will Remain Private)", class: "form-control masked", data: {format: "(999) 999-9999", placeholder: "x"} %> </div> <div class="mb-3"> <%= form.label :member_notes, "Member", class: "form-label" %> <%= form.text_area :member_notes, placeholder: "Member Notes", class: "form-control masked" %> </div> <!-- -PHCDEV- Form Input Fields --> <!-- -PHCDEV- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary btn-md" %> </div> <!-- -PHCDEV- Form Submition Button --> <% end %> <!-- -PHCDEV- Form - Member - Profile -->
Version data entries
4 entries across 4 versions & 1 rubygems