Updated wizard content styles

[MAILPOET-1927]
This commit is contained in:
Ján Mikláš
2019-04-09 13:38:48 +02:00
committed by Ján Mikláš
parent 2c46b69c25
commit f6192f77a1
3 changed files with 27 additions and 61 deletions

View File

@@ -6,19 +6,17 @@ const WelcomeWizardEmailCourseStep = props => (
<div className="mailpoet_welcome_wizard_step_content">
<h1>{MailPoet.I18n.t('welcomeWizardEmailCourseTitle')}</h1>
<p>{MailPoet.I18n.t('welcomeWizardEmailCourseText')}</p>
<div className="mailpoet_welcome_wizard_course_form_box">
<iframe
id="mailpoet_form_iframe"
width="100%"
scrolling="no"
frameBorder="0"
title="Apply to course"
src="https://newsletters.mailpoet.com?mailpoet_form_iframe=13"
className="mailpoet_form_iframe"
marginWidth="0"
marginHeight="0"
/>
</div>
<iframe
id="mailpoet_form_iframe"
width="100%"
scrolling="no"
frameBorder="0"
title="Apply to course"
src="https://newsletters.mailpoet.com?mailpoet_form_iframe=13"
className="mailpoet_form_iframe"
marginWidth="0"
marginHeight="0"
/>
<button type="button" className="button button-primary" onClick={props.next}>{MailPoet.I18n.t('next')}</button>
</div>
);

View File

@@ -41,7 +41,9 @@ const WelcomeWizardSenderStep = props => (
onChange={e => props.update_sender({ address: e.target.value })}
/>
</label>
<input className="button button-primary" type="submit" value={MailPoet.I18n.t('next')} />
<div className="mailpoet_welcome_wizard_step_controls">
<input className="button button-primary" type="submit" value={MailPoet.I18n.t('next')} />
</div>
<a onClick={props.finish} href="#finish" className="sender_form_small">{MailPoet.I18n.t('noThanksSkip')}</a>
</form>
</div>