<form action="https://formsig.com/f/{form_id}" method="post">
<input name="email" type="email" required />
<textarea name="message"></textarea>
<button type="submit">Send</button>
</form>
const endpoint = "https://formsig.com/f/{form_id}";
<form action={endpoint} method="post">
<input name="email" type="email" required />
</form>
const endpoint = process.env.NEXT_PUBLIC_FORMSIG_URL;
<form action={endpoint || "https://formsig.com/f/{form_id}"} method="post">
<input name="email" type="email" required />
</form>
<script setup>
const endpoint = "https://formsig.com/f/{form_id}"
</script>
<form :action="endpoint" method="post">...</form>
<script>
const endpoint = "https://formsig.com/f/{form_id}";
</script>
<form action={endpoint} method="post">...</form>
const endpoint = "https://formsig.com/f/{form_id}";
const fd = new FormData(form);
await fetch(endpoint, {
method: "POST",
body: fd
});
const endpoint = "https://formsig.com/f/{form_id}"
<form :action="endpoint" method="post">
...
</form>
const endpoint = "https://formsig.com/f/{form_id}";
<form action={endpoint} method="post">
...
</form>
<form action="https://formsig.com/f/{form_id}" method="post">
<input name="email" type="email" required />
<button type="submit">Send</button>
</form>
endpoint = "https://formsig.com/f/{form_id}"
<%= form_with url: endpoint, method: :post do %>
<%= email_field_tag :email %>
<% end %>
<form action="https://formsig.com/f/{form_id}" method="post">
<input name="email" type="email" />
<button>Send</button>
</form>
<form action="https://formsig.com/f/{form_id}" method="post">
<input name="email" type="email" />
</form>
endpoint := "https://formsig.com/f/{form_id}"
values := url.Values{"email": {"you@example.com"}}
_, _ = http.PostForm(endpoint, values)
const endpoint = "https://formsig.com/f/{form_id}";
<Form action={endpoint} method="post">
<input name="email" />
</Form>
const endpoint = "https://formsig.com/f/{form_id}";
<form [attr.action]="endpoint" method="post">
<input name="email" type="email" />
</form>
$endpoint = "https://formsig.com/f/{form_id}";
<form action="<?= htmlspecialchars($endpoint) ?>" method="post">
<input name="email" type="email" />
</form>
<form hx-post="https://formsig.com/f/{form_id}" hx-swap="none">
<input name="email" />
</form>