added newsletter signup form
This commit is contained in:
39
front-ui/app/components/about/newsletterSweepstake.js
Normal file
39
front-ui/app/components/about/newsletterSweepstake.js
Normal file
@@ -0,0 +1,39 @@
|
||||
var React = require('react'),
|
||||
CartStore = require('../../stores/cartStore'),
|
||||
AddToCart = require('../cart/addToCart'),
|
||||
CartActions = require('../../actions/cartActions'),
|
||||
LinkBanner = require('../linkBanner/linkBanner'),
|
||||
NavigationActions = require('../../actions/navigationActions'),
|
||||
Globals = require('../../globals')
|
||||
Router = require("react-router"),
|
||||
Link = Router.Link;
|
||||
|
||||
|
||||
var NewsletterSweepstake = React.createClass({
|
||||
|
||||
render: function() {
|
||||
|
||||
return (
|
||||
|
||||
<div className="message center">
|
||||
<p>Prijavite se na naše novosti i saznajte sve o najnovijim sniženjima i ponudama na Ribici!</p>
|
||||
|
||||
<p><strong>I ovaj put - najsretnije očekuju vrijedne Disney Frozen nagrade!</strong> <br /></p>
|
||||
|
||||
<p>Pobjednike objavljujemo u našim email novostima u Ponedjeljak, 7.12.2015. </p>
|
||||
|
||||
|
||||
<p style={{"textAlign": "center"}}>
|
||||
<iframe style={{"width": "100%", "height": "490px", "border": "0px", "overflow": "hidden"}} src="newsletter.html" />
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
module.exports = NewsletterSweepstake;
|
||||
Reference in New Issue
Block a user