This commit is contained in:
pavel 2026-05-10 21:06:23 +02:00
commit 8fa8d04427
10 changed files with 231 additions and 71 deletions

View file

@ -15,6 +15,7 @@
<div class="actions">
<a class="btn primary" href="/skills">Browse Skills</a>
<a class="btn" href="/my-skills">My Purchases</a>
<a class="btn" href="/auth/logout">Logout</a>
</div>
</section>
<section class="panel">
@ -32,4 +33,3 @@
<script src="/static/app.js"></script>
</body>
</html>

View file

@ -13,11 +13,15 @@
<h1>Sell, buy, and reuse high quality LLM skills</h1>
<p class="lead">Upload your prompt packages, automations, and reusable skill bundles. Other users can purchase them and copy directly into their own workspace.</p>
<div class="actions">
<a class="btn primary" href="/dashboard">Open Dashboard</a>
<a class="btn primary" href="/auth/login">Sign In</a>
<a class="btn" href="/dashboard">Open Dashboard</a>
</div>
<p class="hint">Authentication uses your external OIDC provider token via Authorization header.</p>
{{if .DevMode}}
<p class="hint">Dev mode is active. Authentication uses the demo user automatically.</p>
{{else}}
<p class="hint">Authentication is handled by your OIDC provider using secure session cookies.</p>
{{end}}
</section>
</main>
</body>
</html>

View file

@ -14,6 +14,7 @@
<div class="actions">
<a class="btn" href="/dashboard">Back to Dashboard</a>
<a class="btn" href="/skills">Browse More Skills</a>
<a class="btn" href="/auth/logout">Logout</a>
</div>
</section>
<section>
@ -23,4 +24,3 @@
<script src="/static/app.js"></script>
</body>
</html>

View file

@ -14,6 +14,7 @@
<div class="actions">
<a class="btn" href="/dashboard">Back to Dashboard</a>
<a class="btn" href="/my-skills">My Purchases</a>
<a class="btn" href="/auth/logout">Logout</a>
</div>
</section>
<section>
@ -23,4 +24,3 @@
<script src="/static/app.js"></script>
</body>
</html>