Skip to main content

max / makenotwork

1.2 KB · 35 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Sandbox - Makenotwork{% endblock %}
4
5 {% block body_attrs %} class="centered-page"{% endblock %}
6
7 {% block content %}
8 <h1 class="brand-h1">Makenot<span class="dot">.</span>work</h1>
9 <div class="login-container">
10 <h2 class="subtitle-h2">Creator Sandbox</h2>
11 <p class="sandbox-description">
12 Explore the full creator dashboard without signing up.
13 Create projects, manage items, set pricing, write blog posts
14 — everything works just like a real account.
15 </p>
16 <ul class="sandbox-details">
17 <li>Your sandbox lasts <strong>1 hour</strong></li>
18 <li>All data is automatically deleted when it expires</li>
19 <li>Upload files up to 5 MB (50 MB total)</li>
20 <li>Stripe payments and email are simulated</li>
21 </ul>
22 <form method="post" action="/sandbox">
23 {% if let Some(token) = csrf_token %}
24 <input type="hidden" name="_csrf" value="{{ token }}" />
25 {% endif %}
26 <button type="submit" class="btn btn-primary btn-block">
27 Start sandbox
28 </button>
29 </form>
30 <p class="sandbox-footer">
31 Ready to commit? <a href="/join">Create a real account</a>
32 </p>
33 </div>
34 {% endblock %}
35