1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-23 06:33:22 +02:00

Voux newsletter form responsive fixes.

This commit is contained in:
Cameron
2017-02-07 08:00:15 -08:00
parent 7d32e5ae4e
commit c0e90bcf8c
2 changed files with 5 additions and 3 deletions

View File

@@ -31,8 +31,10 @@ class theme_shortcodes extends e_shortcode
$frm = e107::getForm();
$text = $frm->open('newsletter','post', e_SIGNUP, array('class'=>'form-inline'));
$text .= "<div class='input-inline'>";
$text .= $frm->text('email','', null, array('placeholder'=>"Enter your email"));
$text .= $frm->button('subscribe', 1, 'primary', "Subscribe");
$text .= "</div>";
$text .= $frm->close();
return $text;