Sha256: 4bcd9daed1e0d6c0cd800135756856955fe06acc926785fcb224c57219daf259
Contents?: true
Size: 1.27 KB
Versions: 8
Compression:
Stored size: 1.27 KB
Contents
<%= form_with(model: script_author, local: true) do |form| %> <!-- -PHCDEV- Form Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @script_author %> <!-- -PHCDEV- Form Validation --> <!-- -PHCDEV- Form Input Fields --> <div class="mb-3"> <%= form.label :author_first_name, "Author First Name", class: "form-label" %> <%= form.text_field :author_first_name, placeholder: "Author First Name", class: "form-control" %> </div> <div class="mb-3"> <%= form.label :author_last_name, "Author Last Name", class: "form-label" %> <%= form.text_field :author_last_name, placeholder: "Author Last Name", class: "form-control" %> </div> <div class="mb-3"> <%= form.label :author_website, "Author Website", class: "form-label" %> <%= form.text_field :author_website, placeholder: "Author Website", class: "form-control" %> </div> <div class="mb-3"> <%= form.label :author_github, "Author Github Address", class: "form-label" %> <%= form.text_field :author_github, placeholder: "Author Github Address", class: "form-control" %> </div> <!-- -PHCDEV- Form Input Fields --> <!-- -PHCDEV- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- -PHCDEV- Form Submition Button --> <% end %>
Version data entries
8 entries across 8 versions & 2 rubygems