payments
This commit is contained in:
26
front-ui/app/components/payment/paymentSelect.js
Normal file
26
front-ui/app/components/payment/paymentSelect.js
Normal file
@@ -0,0 +1,26 @@
|
||||
var React = require('react');
|
||||
var ItemActions = require('../../actions/itemActions');
|
||||
var NavigationActions = require('../../actions/navigationActions');
|
||||
var NavigationStore = require('../../stores/navigationStore');
|
||||
|
||||
var Globals = require('../../globals');
|
||||
var Router = require('react-router');
|
||||
|
||||
var PaymentSelect = React.createClass({
|
||||
render: function() {
|
||||
return (
|
||||
<div className="payment_select">
|
||||
<input name="payment_method" type="radio" value="credit_card" defaultChecked="checked" className="js-payment-method radio-input" id="pay-by-cod" />
|
||||
<label for="pay-by-credit-card" className="radio-label">
|
||||
Gotovinom (prilikom preuzimanja robe)
|
||||
</label>
|
||||
<input name="payment_method" type="radio" value="paypal" className="js-payment-method radio-input" id="pay-by-credit-card" />
|
||||
<label for="pay-with-paypal" className="radio-label">
|
||||
Kreditnom / debitnom karticom
|
||||
</label>
|
||||
</div>);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
module.exports = PaymentSelect;
|
||||
Reference in New Issue
Block a user