cofi/embed-snippet.html

37 lines
1.1 KiB
HTML

<!--
CoFi Registration Button — Embed Snippet
Copy-paste this anywhere on collaborative-finance.net to add a registration button.
The button links to the standalone registration app at register.collaborative-finance.net.
Customize: Change the button text, colors, or styling below to match your site.
-->
<!-- Option 1: Styled button (self-contained, no external CSS needed) -->
<a
href="https://register.collaborative-finance.net/register"
style="
display: inline-block;
padding: 14px 32px;
background: #2563eb;
color: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: 16px;
font-weight: 600;
text-decoration: none;
border-radius: 8px;
transition: background 0.2s;
"
onmouseover="this.style.background='#1d4ed8'"
onmouseout="this.style.background='#2563eb'"
>
Register for CoFi 2026
</a>
<!-- Option 2: Minimal link (use your own CSS) -->
<!--
<a href="https://register.collaborative-finance.net/register" class="your-button-class">
Register for CoFi 2026
</a>
-->