Paste your own HTML into a landing page
Prefer to design your own landing HTML? Alphorix lets you paste in a full <html> document and hosts it for you.
When to use it
- You have an existing HTML page from a designer / agency
- You need pixel-perfect brand alignment
- You want to integrate custom tracking pixels (Meta / Google / TikTok)
How to set up
- Open Landing Pages → + New landing
- Toggle Render mode to Custom HTML
- Paste your full
<html>...</html>document - Save. Copy the public URL.
- Preview → you'll see your own HTML rendered inside a sandboxed iframe for security
The lead-capture bridge
Any <form> in your HTML that posts to #alphorix-lead will be intercepted and routed to your Alphorix pipeline. Example:
<form action="#alphorix-lead" method="POST">
<input name="first_name" required />
<input name="last_name" />
<input name="email" type="email" required />
<input name="phone" required />
<input name="country" />
<input name="language" />
<button type="submit">Get started</button>
</form>
That's it. Every submit creates a lead in your workspace with source = "landing" and campaign_name = "<landing slug>".
Security
Custom HTML is rendered inside a sandboxed iframe — no access to parent cookies, no way to attack the Alphorix admin. Scripts inside the iframe (analytics, pixels) run in isolation.
Limits
- Max size 500 KB per landing
- No server-side code (PHP / Node) — HTML + CSS + inline JS only
- External
<script src="...">allowed, subject to CSP
Add a two-line JavaScript snippet to any HTML form and it'll POST straight to your Alphorix pipeline.
Advanced plan only — put your own domain, brand colour and logo on every customer-facing surface (forms, landings, emails, invoices).