<%= form_for([@script_author.listing, @script_author], url: form_url) do |f| %>
<%= f.label :authorfirstname, "Author First Name" %> <%= f.text_field :authorfirstname, placeholder: "Author First Name", class: "form-control" %>
<%= f.label :authorlastname, "Author Last Name" %> <%= f.text_field :authorlastname, placeholder: "Author Last Name", class: "form-control" %>
<%= f.label :authorwebsite, "Author Website" %> <%= f.text_field :authorwebsite, placeholder: "Author Website", class: "form-control" %>
<%= f.label :authorgithub, "Author Github Address" %> <%= f.text_field :authorgithub, placeholder: "Author Github Address", class: "form-control" %>
<%= f.label :authortwitter, "Author Twitter Addresss" %> <%= f.text_field :authortwitter, placeholder: "Author Twitter Addresss", class: "form-control" %>
<%= f.submit class: "btn btn-primary" %>
<% end %>