mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-08 16:02:24 +00:00
22 lines
798 B
HTML
22 lines
798 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="robots" content="noindex" />
|
|
<!-- The Go shell stamps the render token here; empty in `vite dev`. -->
|
|
<meta name="wf-token" content="" />
|
|
<!-- Browser error reporting, stamped by the Go shell from the forms
|
|
service's WARMBLY_SENTRY_DSN. Empty (the default, and always in
|
|
`vite dev`) means the SDK chunk is never even fetched. -->
|
|
<meta name="wf-sentry-dsn" content="" />
|
|
<meta name="wf-release" content="" />
|
|
<meta name="wf-environment" content="" />
|
|
<title>Form</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|