Skip to content

Instantly share code, notes, and snippets.

@jamis
Forked from basecamp/37id-login-form.html
Created January 26, 2010 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamis/287113 to your computer and use it in GitHub Desktop.
Save jamis/287113 to your computer and use it in GitHub Desktop.
<form action="https://launchpad.37signals.com/authenticate" method="post">
<input name="product" value="YOUR-PRODUCT" type="hidden" />
<input name="subdomain" value="YOUR-SUBDOMAIN" type="hidden" />
<p>Username<br />
<input name="username" id="username" type="text" /></p>
<p>Password<br />
<input name="password" id="password" type="password" /></p>
<p><label><input name="remember_me" id="remember_me" value="1" type="checkbox" />
Remember me on this computer
</label></p>
<p><input name="submit" value="Sign in" type="submit" /></p>
</form>
The product and subdomain fields must be customized.
Product should be one of basecamp, backpack, campfire, or highrise.
Subdomain should be the subdomain portion of your account's URL.
Example for a Basecamp account located at http://acme.basecamphq.com:
<input name="product" value="basecamp" type="hidden" />
<input name="subdomain" value="acme" type="hidden" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment