Forked from tompec/mailchimp-newsletter-bootstrap.html
Created
April 14, 2019 19:20
-
-
Save stephanhuez/0d1facf39dbcae4b9cc567d0bde093d3 to your computer and use it in GitHub Desktop.
Revisions
-
tompec renamed this gist
Oct 7, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
tompec revised this gist
Oct 7, 2017 . 1 changed file with 8 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,11 +9,6 @@ div.mce_inline_error { color: red; } </style> </head> <body> @@ -28,12 +23,14 @@ </div> <div class="mc-field-group"> <div class="form-group"> <label for="mce-EMAIL" class="sr-only">Email Address</label> <div class="input-group"> <input type="email" value="" name="EMAIL" class="required email form-control" id="mce-EMAIL" placeholder="Your email"> <span class="input-group-btn"> <button class="btn btn-default" type="submit">Subscribe</button> </span> </div> </div> </div> -
tompec created this gist
Oct 7, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,53 @@ <!DOCTYPE html> <html> <head> <title>Mailchimp newsletter</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <style> div.mce_inline_error { color: red; } div.mce_inline_error, #mce-responses { margin-top: 5px; } </style> </head> <body> <div class="container"> <div class="row"> <div class="col-sm-6 col-sm-offset-3"> <form action="YOUR_MAILCHIMP_URL" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> <div style="position: absolute; left: -5000px;" aria-hidden="true"> <input type="text" name="b_f7fcffd059cde2df667ed71e0_b59497a580" tabindex="-1" value=""> </div> <div class="mc-field-group"> <label for="mce-EMAIL" class="sr-only">Email Address</label> <div class="input-group"> <input type="email" value="" name="EMAIL" class="required email form-control" id="mce-EMAIL" placeholder="Your email"> <span class="input-group-btn"> <button class="btn btn-default" type="submit">Subscribe</button> </span> </div> </div> <div id="mce-responses"> <div class="response text-warning" id="mce-error-response" style="display:none"></div> <div class="response text-success" id="mce-success-response" style="display:none"></div> </div> </form> </div> </div> </div> <script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script> </body> </html>