Tools··4 min read

A feedback button for the project that isn't ready for a full board

Not every landing page or client project needs a dashboard yet. We built a free, no-account widget generator for the version before that.

Not every site needs a feedback dashboard. A landing page you shipped last night, a client project in review, a side project with eleven users — sometimes you just want a small button that lets someone tell you something's broken, without setting up an account first. We built a free generator for exactly that gap.

What it generates

You pick a button label, a position, an accent color, and an email address. It hands back a single self-contained script tag: no build step, no dependency, no backend of ours or yours in the loop.

html
<script>
(function () {
  var CONFIG = {
    buttonText: "Feedback",
    email: "you@example.com",
    accentColor: "#E05A33",
    side: "right",
  };
  // renders a floating button + modal, submits via mailto
})();
</script>

Paste it before </body>, and a floating button shows up with a small modal behind it. Someone types their feedback, hits send, and it opens as a pre-filled email straight to you. No project to create, no API key, no server round-trip.

The catch with mailto

We'd rather say this plainly than have you discover it later: mailto is a stopgap, not a system. There's no dedupe if five people report the same bug, no vote count to tell you what actually matters, no record once the email is buried in your inbox, and it depends on the visitor having a mail client configured at all. For a handful of messages a month, that's a fair trade for zero setup. Past that, it starts costing you more than it saves.

When to graduate

The moment you notice yourself digging through email for "that one bug report from a few weeks ago," that's the signal. Swapping the generated script for the real Upstep widget is the same two lines of code, except now submissions land in a dashboard instead of an inbox: votes, statuses, comments, and a public board your users can follow instead of a one-way email you might miss.

Try it

It's at /tools/feedback-widget-generator, free, no account. Generate one, drop it on whatever you're building this week, and worry about a real board once mailto stops being enough.

Start collecting feedback today

Free plan. 2-line integration. Your API key is ready the moment you sign up.

Get started free