Previews

No matching results.

x
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
<div style="max-width: 600px">
<div class="Polaris-LegacyCard">
<div class="Polaris-LegacyCard__Header">
<h2 class="Polaris-Text--root Polaris-Text--headingMd Polaris-Text--semibold">
Terms of service
</h2>
</div>
<div class="Polaris-LegacyCard__Section">
<div data-polaris-scrollable-shadow-value="false" data-polaris-scrollable-top-shadow-class="Polaris-Scrollable--hasTopShadow" data-polaris-scrollable-bottom-shadow-class="Polaris-Scrollable--hasBottomShadow" data-controller="polaris-scrollable" tabindex="0" style="height: 100px;" class="Polaris-Scrollable Polaris-Scrollable--vertical">
<span data-polaris-scrollable-target="topEdge"></span>
<p>
By signing up for the Shopify service (“Service”) or any of the services
of Shopify Inc. (“Shopify”) you are agreeing to be bound by the following
terms and conditions (“Terms of Service”). The Services offered by Shopify
under the Terms of Service include various products and services to help
you create and manage a retail store, whether an online store (“Online
Services”), a physical retail store (“POS Services”), or both. Any new
features or tools which are added to the current Service shall be also
subject to the Terms of Service. You can review the current version of the
Terms of Service at any time at https://www.shopify.com/legal/terms.
Shopify reserves the right to update and change the Terms of Service by
posting updates and changes to the Shopify website. You are advised to
check the Terms of Service from time to time for any updates or changes
that may impact you.
</p>
<span data-polaris-scrollable-target="bottomEdge"></span>
</div>
</div>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div style="max-width: 600px">
<%= polaris_card(title: "Terms of service") do %>
<%= polaris_scrollable(height: "100px", focusable: true) do %>
<p>
By signing up for the Shopify service (“Service”) or any of the services
of Shopify Inc. (“Shopify”) you are agreeing to be bound by the following
terms and conditions (“Terms of Service”). The Services offered by Shopify
under the Terms of Service include various products and services to help
you create and manage a retail store, whether an online store (“Online
Services”), a physical retail store (“POS Services”), or both. Any new
features or tools which are added to the current Service shall be also
subject to the Terms of Service. You can review the current version of the
Terms of Service at any time at https://www.shopify.com/legal/terms.
Shopify reserves the right to update and change the Terms of Service by
posting updates and changes to the Shopify website. You are advised to
check the Terms of Service from time to time for any updates or changes
that may impact you.
</p>
<% end %>
<% end %>
</div>