| 1 |
<div class="paywall-section"> |
| 2 |
<div class="paywall-box"> |
| 3 |
<h2 class="subsection-title">This is a paid item</h2> |
| 4 |
<p class="paywall-price">{{ item.price }}</p> |
| 5 |
<p class="paywall-desc">One-time purchase for lifetime access</p> |
| 6 |
|
| 7 |
{% if let Some(_user) = session_user %} |
| 8 |
<a href="/purchase/{{ item.id }}" class="btn-primary">Purchase</a> |
| 9 |
{% else %} |
| 10 |
<a href="/login?redirect=/i/{{ item.id }}" class="btn-primary">Log in to Purchase</a> |
| 11 |
<p class="paywall-note">or <a href="/join">create an account</a></p> |
| 12 |
{% endif %} |
| 13 |
|
| 14 |
<p class="paywall-trust"> |
| 15 |
Support {{ creator_username }} directly - 0% platform fee, only ~3% payment processing. |
| 16 |
</p> |
| 17 |
</div> |
| 18 |
</div> |
| 19 |
|