-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnotification-settings.jsx
More file actions
40 lines (38 loc) · 1.53 KB
/
notification-settings.jsx
File metadata and controls
40 lines (38 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React from 'react';
import ContentBox from 'components/core/content-box';
import { SliderCheckbox } from 'components/core/checkbox';
export default class CustomerNotificationSettings extends React.Component {
render() {
return (
<ContentBox title="Email & Notification Preferences" className="fc-customer-notification-settings">
<div className="fc-grid fc-customer-settings-title-row">
<div className="fc-col-md-1-1">
<strong>Transactional Notifications</strong>
<span className="fc-customer-notification-title-comment"> (must select 1)</span>
</div>
</div>
<div className="fc-customer-status-row">
SMS Notifications
<SliderCheckbox id="customerSmsNotifications" defaultChecked={ false } />
</div>
<div className="fc-customer-status-row">
Email Notifications
<SliderCheckbox id="customerEmailNotifications" defaultChecked={ true } />
</div>
<div className="fc-grid fc-customer-settings-title-row">
<div className="fc-col-md-1-1">
<strong>Marketing</strong>
</div>
</div>
<div className="fc-customer-status-row">
SMS Promotional Offers
<SliderCheckbox id="customerSmsPromoOffers" defaultChecked={ true } />
</div>
<div className="fc-customer-status-row">
Email Promotional Offers
<SliderCheckbox id="customerEmailPromoOffers" defaultChecked={ true } />
</div>
</ContentBox>
);
}
}