-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
300 lines (252 loc) · 16.4 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!DOCTYPE html>
<html lang="en" class="sl-theme-dark dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Such DogeBox Pre-Order</title>
<!-- Load Shoelace -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/themes/dark.css">
<script type="module" src="//cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/shoelace-autoloader.js"></script>
<!-- Load Font Awesome -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer">
<!-- Load jQuery -->
<script src="//code.jquery.com/jquery-3.7.1.min.js"></script>
<!-- Load Google Font for Doge -->
<link href="//fonts.googleapis.com/css2?family=Comic+Neue&display=swap" rel="stylesheet">
<!-- Load DataTables -->
<link rel="stylesheet" href="//cdn.datatables.net/2.1.4/css/dataTables.dataTables.css">
<script src="//cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script>
<!-- Load Global CSS -->
<link rel="stylesheet" href="css/dogebox.css">
<!-- Load SweetAlert2 -->
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- Load Dogecoin Address validator from Patrick -->
<script src="inc/vendors/bs58caddr.bundle.min.js"></script>
<!-- Load Dogecoin Foundation Fetch -->
<script type="module" src="//fetch.dogecoin.org/doge-qr.js"></script>
<!-- Load Custom JavaScript -->
<script src="js/dogebox.js"></script>
</head>
<body>
<sl-button style="padding-bottom: 15px;" id="goback" onclick="history.back()">
<i class="fa-solid fa-caret-left"></i> Go Back
</sl-button>
<div>
<form class="input-validation-required" id="PayinDoge">
<div class="shipping-billing-details">
<sl-details open>
<div slot="summary" style="display: flex; align-items: center;">
<i class="fa-solid fa-box" style="padding-right: 10px;"></i>
<strong>Select DogeBox</small>
</div>
<sl-select id="dogebox-select" value="b0rk" name="sku" hoist>
<sl-option value="standard">Standard Edition</sl-option>
<sl-option value="founders">Founders Edition</sl-option>
<sl-option value="b0rk">Full Bork</sl-option>
</sl-select>
<sl-card class="card-header" style="width: 100%;">
<div slot="header">
What is Included
<div id="dogeprice">Ð 4200.69 <span>+ shipping</span></div>
</div>
<div style="padding: 3px;">T6 Nano PC <i class="fa-solid fa-check" style="float: right;"></i></div>
<div id="boxnvme" style="padding: 3px;">2TB NVMe<i class="fa-solid fa-check" style="float: right;"></i></div>
<div id="boxram" style="padding: 3px;">16GB Ram <i class="fa-solid fa-check" style="float: right;"></i></div>
<div style="padding: 3px;">32GB SD Card <i class="fa-solid fa-check" style="float: right;"></i></div>
<div style="padding: 3px;">Universal Power Supply (110-240v) <i class="fa-solid fa-check" style="float: right;"></i></div>
<div id="boxtshirt" style="padding: 3px;">Full B0rk T-Shirt <i class="fa-solid fa-check" style="float: right;"></i></div>
<div id="boxstickers" style="padding: 3px;">Stickers & Temporary Tatoos <i class="fa-solid fa-check" style="float: right;"></i></div>
<div id="boxblock" style="padding: 3px;">Block Zero Floppy Disk <i class="fa-solid fa-check" style="float: right;"></i></div>
<div id="boxbadge" style="padding: 3px;">Digital Founders Badge <i class="fa-solid fa-check" style="float: right;"></i></div>
<div slot="footer">
<sl-button style="width: -webkit-fill-available !important; min-width: 100%;" variant="primary" onclick="document.querySelector('.gallery').show();"><i class="fa-solid fa-box-open" style="padding-right: 10px;"></i> See Gallery</sl-button>
</div>
<sl-dialog class="gallery">
<sl-carousel pagination navigation mouse-dragging loop>
<sl-carousel-item>
<img alt="Dogebox" src="img/dogebox_1.png" style="object-fit: contain !important" />
</sl-carousel-item>
<sl-carousel-item>
<img alt="Dogebox" src="img/dogebox_2.png" style="object-fit: contain !important" />
</sl-carousel-item>
</sl-carousel>
</sl-dialog>
</sl-card>
</sl-details>
<sl-details>
<div slot="summary" style="display: flex; align-items: center;">
<i class="fa-solid fa-truck-fast" style="padding-right: 10px;"></i>
<strong>Shipping Details</small>
</div>
<sl-input placeholder="Name" name="name" clearable required></sl-input>
<sl-input placeholder="Email" name="email" clearable type="email" required></sl-input>
<sl-select placeholder="Country" name="country" hoist required>
<!-- List of countries -->
</sl-select>
<sl-input placeholder="Address" name="address" clearable required></sl-input>
<sl-input placeholder="Postal Code" name="postalCode" clearable required></sl-input>
<sl-input placeholder="Dogecoin Address for Refunds" name="dogeAddress" id="dogeadd" clearable required></sl-input>
</sl-details>
<sl-details>
<div slot="summary" style="display: flex; align-items: center;">
<i class="fa-solid fa-file-invoice" style="padding-right: 10px;"></i>
<strong>Billing Details</small>
</div>
<sl-checkbox id="sameAsShipping" name="billing" style="padding-top: 15px; padding-bottom: 15px;">
Billing Address sames as Shipping
</sl-checkbox>
<sl-input placeholder="Name" name="bname" clearable required></sl-input>
<sl-input placeholder="Email" name="bemail" clearable type="email" required></sl-input>
<sl-select placeholder="Country" name="bcountry" hoist required>
<!-- List of countries -->
</sl-select>
<sl-input placeholder="Address" name="baddress" clearable required></sl-input>
<sl-input placeholder="Postal Code" name="bpostalCode" clearable required></sl-input>
</sl-details>
<sl-details>
<div slot="summary" style="display: flex; align-items: center;">
<i class="fa-solid fa-file-signature" style="padding-right: 10px;"></i>
<strong>Terms and Conditions</small>
</div>
<!-- Terms of Service -->
<p><strong>Dogecoin Foundation - DogeBox Terms of Service</strong></p>
<p><strong>Last Updated:</strong> August 22, 2024</p>
<p>Welcome to the Dogecoin Foundation's official store! By purchasing a DogeBox, a hardware product offered by the Dogecoin Foundation, you agree to the following Terms of Service. Please read them carefully.</p>
<h3 id="1-agreement-to-terms-">1. <strong>Agreement to Terms</strong></h3>
<p>By accessing and purchasing from this site, you agree to be bound by these Terms of Service and our Privacy Policy. If you do not agree to these terms, please do not purchase our products.</p>
<h3 id="2-product-description-">2. <strong>Product Description</strong></h3>
<p>The DogeBox is a hardware device developed by the Dogecoin Foundation. All product specifications, features, and other information are subject to change without notice. The DogeBox is sold as-is, and the Dogecoin Foundation makes no guarantees regarding its performance, compatibility, or durability beyond those described on the product page.</p>
<h3 id="3-payment-">3. <strong>Payment</strong></h3>
<p>All payments for the DogeBox must be made exclusively in Dogecoin (Ð). The amount of Dogecoin required for purchase is based on the current price listed on our website at the time of checkout.</p>
<h3 id="4-order-processing-">4. <strong>Order Processing</strong></h3>
<p>Orders will be processed after full payment is received and confirmed on the Dogecoin blockchain. Once payment is confirmed, you will receive a confirmation email with the details of your purchase and an estimated shipping date.</p>
<h3 id="5-shipping-and-delivery-">5. <strong>Shipping and Delivery</strong></h3>
<ul>
<li>We ship worldwide. Shipping costs are calculated at checkout and must be paid in Dogecoin along with the product cost.</li>
<li>Delivery times may vary depending on your location and other factors. The Dogecoin Foundation is not responsible for delays caused by customs or other third parties.</li>
<li>You are responsible for providing a correct shipping address. The Dogecoin Foundation will not be liable for any lost shipments due to an incorrect address.</li>
</ul>
<h3 id="6-returns-and-refunds-">6. <strong>Returns and Refunds</strong></h3>
<ul>
<li><strong>No Refunds:</strong> All sales of the DogeBox are final. Due to the nature of cryptocurrency transactions, we cannot offer refunds after the payment is confirmed.</li>
<li><strong>Warranty:</strong> The DogeBox comes with a limited warranty that covers manufacturing defects. The warranty does not cover damage caused by misuse, abuse, or normal wear and tear. If you encounter an issue with your DogeBox, please contact our support team within 30 days of receiving the product.</li>
</ul>
<h3 id="7-dogecoin-address-for-refunds-">7. <strong>Dogecoin Address for Refunds</strong></h3>
<ul>
<li>While refunds are generally not available, in specific cases where the Dogecoin Foundation deems a refund appropriate, the refund will be issued in Dogecoin to the address you provided at the time of purchase.</li>
<li>It is your responsibility to ensure that the Dogecoin address provided is correct. The Dogecoin Foundation is not liable for refunds sent to an incorrect address.</li>
</ul>
<h3 id="8-limitation-of-liability-">8. <strong>Limitation of Liability</strong></h3>
<ul>
<li>The Dogecoin Foundation shall not be liable for any indirect, incidental, or consequential damages arising out of or in connection with your use or inability to use the DogeBox, including but not limited to damages for loss of profits, loss of data, or other intangible losses.</li>
<li>The Dogecoin Foundation's total liability to you for any damages shall not exceed the amount you paid for the DogeBox.</li>
</ul>
<h3 id="9-governing-law-">9. <strong>Governing Law</strong></h3>
<p>These Terms of Service are governed by and construed in accordance with the laws of the jurisdiction in which the Dogecoin Foundation is registered, without regard to its conflict of law principles.</p>
<h3 id="10-changes-to-terms-">10. <strong>Changes to Terms</strong></h3>
<p>The Dogecoin Foundation reserves the right to modify these Terms of Service at any time. Any changes will be posted on this page with the updated date. Your continued use of the website and purchase of products constitutes your acceptance of any revised terms.</p>
<h3 id="11-contact-information-">11. <strong>Contact Information</strong></h3>
<p>If you have any questions about these Terms of Service, please contact us at:</p>
<p><strong>Dogecoin Foundation</strong><br>Email: [email protected]</p>
<hr>
</sl-details>
</div>
<div>
<sl-checkbox name="terms" onchange="$('.checkout').show();" style="padding-top: 15px; padding-bottom: 15px;" required>
I read and accept the Terms and Conditions
</sl-checkbox>
</div>
<div id="checkout" style="display: none;">
<sl-alert variant="warning" open>
<i class="fa-solid fa-paw"></i>
<strong>Checkout</strong><br />
<div style="padding-top: 15px;"><code>> Such Product:</code> <b><span id="product-doge"></span> Ð <span id="price-doge"></span></b></div>
<div id="size-select" style="display: none;"><code>> Full B0RK T-Shirt:</code>
<span id="size-doge">
<sl-select placeholder="Size" name="size" hoist>
<sl-option value="S">S</sl-option>
<sl-option value="M">M</sl-option>
<sl-option value="L">L</sl-option>
<sl-option value="XL">XL</sl-option>
<sl-option value="XXL">XXL</sl-option>
</sl-select>
</span>
<a href="#" onclick="document.querySelector('.suchSize').show();" >such t-shirt size chart</a>
</div>
<sl-dialog class="suchSize">
<div slot="label" style="display: flex; align-items: center;">
<i class="fa-solid fa-circle-question" style="padding-right: 10px;"></i>
<strong>Such T-Shirt Size Chart</small>
</div>
<div style="padding: 0 1rem;">
<img src="img/such-size-chart.png" style=" width: 100%; height: auto;">
</div>
</sl-dialog>
<div id="shipping-select" style="display: none;"><code>> Shipping Options:</code> <span id="shipping-doge"></span></div>
<div id="total-pay" style="display: none;">
<div style="font-size: 26px;">Total: Ð <span id="total-doge"></span></div>
<sl-button type="submit" style="width: -webkit-fill-available !important; min-width: 100%;">
<img src="img/dogecoin.png" style="max-width: 20px; margin-bottom: -5px;" alt="Dogecoin Logo">
Pay in Dogecoin
</sl-button>
</div>
</sl-alert>
</div>
</form>
</div>
<div class="Pay" style="display: none;">
<sl-alert variant="warning" open>
<i class="fa-solid fa-paw"></i>
<strong>Much pay the exact amount below for the order to complete successfully.</strong>
</sl-alert>
<div class="animation-sandbox">
<sl-animation name="bounce" easing="ease-in-out" duration="2000" play>
<div style="margin: auto; display:table; padding: 10px" id="dogeQR"></div>
</sl-animation>
</div>
<div style="margin: auto;display:table;">
<span id="dogeAddress" class="dogeAddress"></span>
<sl-copy-button from="dogeAddress"></sl-copy-button>
<div style="text-align: center;">
<sl-button id="amount" variant="warning" outline></sl-button>
</div>
</div>
</div>
<sl-button style="width: -webkit-fill-available !important; min-width: 100%;" onclick="document.querySelector('.faq').show();"><i class="fa-solid fa-circle-question" style="padding-right: 10px;"></i>Frequently Asked Questions</sl-button>
<sl-dialog class="faq">
<div slot="label" style="display: flex; align-items: center;">
<i class="fa-solid fa-circle-question" style="padding-right: 10px;"></i>
<strong>Frequently Asked Questions</small>
</div>
<div style="height: 150vh; padding: 0 1rem;">
<div class="faqs-group">
<sl-details summary="Shipping" open>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</sl-details>
<sl-details summary="Cancelations">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</sl-details>
<sl-details summary="Returns">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</sl-details>
<sl-details summary="Warranty">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</sl-details>
<sl-details summary="Paying in Dogecoin">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</sl-details>
</div>
</div>
</sl-dialog>
<style>
.shipping-billing-details sl-details:not(:last-of-type) {
margin-bottom: var(--sl-spacing-2x-small);
}
</style>
</body>
</html>