Sha256: ec47da71ed421e72311294173ef2ad3bbf165e3cac647ba5f0a9931d34e907cb
Contents?: true
Size: 1.38 KB
Versions: 9
Compression:
Stored size: 1.38 KB
Contents
<%= form_with(model: script_author, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render 'phcnotifi/validations', :object => @script_author %> <!-- Form Input Fields --> <div class="form-group field_with_error"> <%= form.label :authorfirstname, "Author First Name" %> <%= form.text_field :authorfirstname, placeholder: "Author First Name", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= form.label :authorlastname, "Author Last Name" %> <%= form.text_field :authorlastname, placeholder: "Author Last Name", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= form.label :authorwebsite, "Author Website" %> <%= form.text_field :authorwebsite, placeholder: "Author Website", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= form.label :authorgithub, "Author Github Address" %> <%= form.text_field :authorgithub, placeholder: "Author Github Address", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= form.label :authortwitter, "Author Twitter Addresss" %> <%= form.text_field :authortwitter, placeholder: "Author Twitter Addresss", 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
9 entries across 9 versions & 1 rubygems