Skip to main content

max / makenotwork

5.2 KB · 107 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Connect with Stripe - Makenotwork{% endblock %}
4 {% block body_attrs %} class="stripe-disclaimer-page"{% endblock %}
5
6 {% block content %}
7 <div class="container">
8 <h1 class="stripe-disclaimer-title">Makenot<span class="dot">.</span>work</h1>
9 <p class="tagline">Fair distribution for creatives of all kinds<span class="dot">.</span></p>
10
11 <div class="disclaimer-box raised">
12 <h2 class="section-header">Before You Connect with Stripe</h2>
13 <p class="stripe-disclaimer-lead">
14 Please review the following information about payment processing and your responsibilities as a creator.
15 </p>
16
17 <div class="section">
18 <h3>What Stripe Handles</h3>
19 <ul>
20 <li>Payment processing and security (PCI compliance)</li>
21 <li>Direct deposits to your bank account</li>
22 <li>1099-K tax forms (if you meet IRS thresholds)</li>
23 <li>Fraud detection and prevention</li>
24 </ul>
25 </div>
26
27 <div class="section">
28 <h3>Your Responsibilities</h3>
29 <ul>
30 <li><strong>Taxes:</strong> You are responsible for reporting and paying income taxes on your earnings. Makenotwork does not withhold taxes.</li>
31 <li><strong>Chargebacks:</strong> You are liable for payment disputes. If a customer disputes a charge, Stripe may debit your account for the disputed amount plus a dispute fee. The fee varies by country and currency; Stripe's pricing page for your country has the figure.</li>
32 <li><strong>Refunds:</strong> You handle refund requests directly. Note that Stripe processing fees are typically not refunded when you issue a refund.</li>
33 <li><strong>Account Accuracy:</strong> You must keep your Stripe account information accurate and up to date.</li>
34 </ul>
35 </div>
36
37 <div class="section">
38 <h3>Fee Transparency</h3>
39 <p class="stripe-disclaimer-fee-lead">
40 Here's what happens when someone buys from you. The numbers below are
41 Stripe's US pricing, shown as an example; Stripe charges different rates
42 in other countries, and its pricing page for yours has the real ones.
43 The part that does not vary is our share of it.
44 </p>
45 <div class="fee-example">
46 <div class="fee-row">
47 <span>Example sale price</span>
48 <span>$10.00 USD</span>
49 </div>
50 <div class="fee-row">
51 <span>Stripe processing (2.9% + 30c, US rate)</span>
52 <span>-$0.59</span>
53 </div>
54 <div class="fee-row">
55 <span>Makenotwork platform fee</span>
56 <span class="zero">$0.00</span>
57 </div>
58 <div class="fee-row highlight">
59 <span>You receive</span>
60 <span>$9.41</span>
61 </div>
62 </div>
63 <p class="stripe-disclaimer-note">
64 We charge zero platform fees, in every currency. The only deduction is
65 Stripe's payment processing fee, whatever it is where you are.
66 </p>
67 </div>
68
69 <div class="section">
70 <h3>Payout Schedule</h3>
71 <p>
72 Stripe pays out on a rolling 2-7 business day schedule (varies by country and account history). You can adjust your payout schedule in your Stripe Dashboard after connecting.
73 </p>
74 </div>
75
76 <div class="section">
77 <h3>Already Have a Stripe Account?</h3>
78 <p>
79 You can connect your existing Stripe account - no need to create a new one. This means you keep your negotiated rates, existing payment history, and can manage all your sales from one dashboard.
80 </p>
81 </div>
82
83 <div class="acceptance">
84 <div class="checkbox-group">
85 <input type="checkbox" id="accept-terms" />
86 <label for="accept-terms">
87 I understand my responsibilities as outlined above, including tax obligations, chargeback liability, and refund handling. I'm ready to connect my Stripe account.
88 </label>
89 </div>
90 </div>
91
92 <div class="button-row">
93 <button type="button" class="btn-secondary" data-action="nav" data-href="/dashboard?tab=details">Cancel</button>
94 <button type="button" class="btn-primary" id="continue-btn" disabled data-action="proceedToStripe">Continue to Stripe</button>
95 </div>
96
97 <p class="note">
98 You will be redirected to Stripe to create or connect your account.
99 </p>
100 </div>
101 </div>
102 {% endblock %}
103
104 {% block scripts %}
105 <script src="/static/page-stripe-disclaimer.js?v=0623" defer></script>
106 {% endblock %}
107