Sha256: 50208218414e98be7a2f4aedbb806f36baadc07959a564c9cc7f711d6b5c8e2e
Contents?: true
Size: 909 Bytes
Versions: 19
Compression:
Stored size: 909 Bytes
Contents
<!-- Form - Script - Snippets --> <%= form_with(model: @snippet_post, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @snippet_post %> <!-- PHCNotifi Render Validation --> <!-- Form Input Fields --> <div class="form-group field_with_errors"> <%= form.label :snippet_title, "Snippet Title" %> <%= form.text_field :snippet_title, placeholder: "Snippet Title", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :snippet_code, "Code Snippet" %> <%= form.text_area :snippet_code, placeholder: "Code Snippet", rows: "10", class: "form-control" %> </div> <!-- Form Input Fields --> <!-- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- For Submition Button --> <% end %> <!-- Form - Script - Snippets -->
Version data entries
19 entries across 19 versions & 1 rubygems