Sha256: 3e608872d356fa3e6977063b37da3c04f9ae332f5a19a7f01c713fe9dc187cca
Contents?: true
Size: 938 Bytes
Versions: 12
Compression:
Stored size: 938 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_post_title, "Snippet Title" %> <%= form.text_field :snippet_post_title, placeholder: "Snippet Title", class: "form-control" %> </div> <div class="form-group field_with_errors"> <%= form.label :snippet_post_code, "Code Snippet" %> <%= form.text_area :snippet_post_code, class: "form-control editor" %> <div id="word-count" class="mt-3"></div> </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
12 entries across 12 versions & 1 rubygems