Sha256: e8cdc21c6dd6f4f7de24b10c82856a97f848e560b17712716176d85315132ea5

Contents?: true

Size: 1.77 KB

Versions: 7

Compression:

Stored size: 1.77 KB

Contents

<!-- Form - Member - Profile -->
<%= form_with(model: @member_profile, local: true) do |form| %>

	<!-- PHCNotifi Render Validation -->
	<%= render 'phcnotifi/default/validations', :object => @member_profile %>
	<!-- PHCNotifi Render Validation -->

	<!-- Form Input Fields -->
	<div class="form-group field_with_errors">
		<%= form.label :member_first_name, "First Name *" %>
		<%= form.text_field :member_first_name, class: 'form-control', placeholder: 'First Name' %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :member_last_name, "Last Name *" %>
		<%= form.text_field :member_last_name, class: 'form-control', placeholder: 'Last Name' %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :member_title, "Job Title" %>
		<%= form.text_field :member_title, class: 'form-control', placeholder: 'Job Title/Salutation' %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :member_email, "Contact Email Address *" %>
		<%= form.text_field :member_email, class: 'form-control', placeholder: 'Contact Email (Will Remain Private)' %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :member_phone, "Contact Phone Number *" %>
		<%= form.text_field :member_phone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :member_notes, "Member Notes" %>
		<%= form.text_area :member_notes, class: 'form-control masked', placeholder: 'Member Notes' %>
	</div>
	<!-- Form Input Fields -->

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

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
phcmemberspro-91.4.0 app/views/phcmemberspro/member/profiles/_form.html.erb
phcmemberspro-91.3.0 app/views/phcmemberspro/member/profiles/_form.html.erb
phcmemberspro-91.2.0 app/views/phcmemberspro/member/profiles/_form.html.erb
phcmemberspro-91.1.0 app/views/phcmemberspro/member/profiles/_form.html.erb
phcmemberspro-91.0.0 app/views/phcmemberspro/member/profiles/_form.html.erb
phcmemberspro-90.0.0 app/views/phcmemberspro/member/profiles/_form.html.erb
phcmemberspro-89.0.0 app/views/phcmemberspro/member/profiles/_form.html.erb