Sha256: f40504114ff7d2090c62678434d6d6a2f35e3dc65c4f93993962563c467aa717
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcdevworks_members-11.2.0 | app/views/phcdevworks_members/member/profiles/_form.html.erb |