Looking for a quick solution here. I currently have the following HTML code snippet, and I'm in the process of simplifying it for use within my Rails application.
<input type="email" class="form-control" id="newsletter" placeholder="Please Enter Your Email">
Here's what I've come up with so far, but I'm having some trouble getting the ID value to display as intended.
<%= f.input :email, placeholder: "Please Enter Your Email", class: "form-control", id: "newsletter", :input_html => { :type => "email" }, label: false %>