Sha256: 1235c69ceaee7f69ab715ca7e4e13551ea177f46d9b85d05260ae8ba5fb6785d

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

<%= form_with(model: script_author, local: true) do |form| %>

	<!-- PHCNotifi Render Validation -->
	<%= render 'phcdevworks_notifications/bootstrap/validations', :object => @script_author %>
	<!-- PHCNotifi Render Validation -->

	<!-- Form Input Fields -->
	<div class="form-group field_with_errors">
		<%= form.label :author_first_name, "Author First Name" %>
		<%= form.text_field :author_first_name, placeholder: "Author First Name", class: "form-control"  %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :author_last_name, "Author Last Name" %>
		<%= form.text_field :author_last_name, placeholder: "Author Last Name", class: "form-control"  %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :author_website, "Author Website" %>
		<%= form.text_field :author_website, placeholder: "Author Website", class: "form-control"  %>
	</div>
	<div class="form-group field_with_errors">
		<%= form.label :author_github, "Author Github Address" %>
		<%= form.text_field :author_github, placeholder: "Author Github Address", class: "form-control"  %>
	</div>
	<!-- Form Input Fields -->

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

<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcdevworks_scripts-2.1.1 app/views/phcdevworks_scripts/script/authors/_form.html.erb
phcdevworks_scripts-2.1.0 app/views/phcdevworks_scripts/script/authors/_form.html.erb
phcdevworks_scripts-1.0.0 app/views/phcdevworks_scripts/script/authors/_form.html.erb
phcdevworks_scripts-0.1.0 app/views/phcdevworks_scripts/script/authors/_form.html.erb