Sha256: c290ed01fb81043fab5dca30355a345c57eb930879b1bf8089c3b1cb7585f5a4
Contents?: true
Size: 1.79 KB
Versions: 20
Compression:
Stored size: 1.79 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 :profile_first_name, "First Name*" %> <%= form.text_field :profile_first_name, placeholder: "First Name", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :profile_last_name, "Last Name*" %> <%= form.text_field :profile_last_name, placeholder: "Last Name", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :profile_title, "Job Title" %> <%= form.text_field :profile_title, placeholder: "Job Title/Salutation", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :profile_email, "Contact Email Address*" %> <%= form.text_field :profile_email, placeholder: "Contact Email (Will Remain Private)", class: "form-control masked" %> </div> <div class="form-group field_with_errors"> <%= form.label :profile_phone, "Contact Phone Number*" %> <%= form.text_field :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 :profile_notes, "Member" %> <%= form.text_area :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
20 entries across 20 versions & 1 rubygems