Sha256: f82180d2bf9f0dd1b840bc6f2eb1f2d98650be62307ff7ae3a28617e8677935f

Contents?: true

Size: 1.94 KB

Versions: 3

Compression:

Stored size: 1.94 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_profile_first_name, "First Name*", class: "form-label" %>
		<%= form.text_field :member_profile_first_name, placeholder: "First Name", class: "form-control" %>
	</div>

	<div class="mb-3">
		<%= form.label :member_profile_last_name, "Last Name*", class: "form-label" %>
		<%= form.text_field :member_profile_last_name, placeholder: "Last Name", class: "form-control" %>
	</div>

	<div class="mb-3">
		<%= form.label :member_profile_title, "Job Title", class: "form-label" %>
		<%= form.text_field :member_profile_title, placeholder: "Job Title/Salutation", class: "form-control" %>
	</div>

	<div class="mb-3">
		<%= form.label :member_profile_email, "Contact Email Address*", class: "form-label" %>
		<%= form.text_field :member_profile_email, placeholder: "Contact Email (Will Remain Private)", class: "form-control masked" %>
	</div>

	<div class="mb-3">
		<%= form.label :member_profile_phone, "Contact Phone Number*", class: "form-label" %>
		<%= 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="mb-3">
		<%= form.label :member_profile_notes, "Member", class: "form-label" %>
		<%= form.text_area :member_profile_notes, placeholder: "Member Notes", class: "form-control" %>
	</div>
	<!-- -PHCDEV- Form Input Fields -->

	<!-- -PHCDEV- Form Submition Button -->
	<div class="actions">
		<%= form.submit class: "btn btn-primary" %>
	</div>
	<!-- -PHCDEV- For Submition Button -->

<% end %>
<!-- -PHCDEV- Form - Member - Profile -->

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_members-12.0.2 app/views/phcdevworks_members/member/profiles/_form.html.erb
phcdevworks_members-12.0.1 app/views/phcdevworks_members/member/profiles/_form.html.erb
phcdevworks_members-12.0.0 app/views/phcdevworks_members/member/profiles/_form.html.erb