Skip to content

Commit

Permalink
coupon form fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Dec 16, 2011
1 parent aa3d6b3 commit 34d61f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions public/help.html
Expand Up @@ -76,9 +76,9 @@ <h2><img src="images/rocket-md-right.png" width="30" /> Requesting a Coupon Code
</div>
<div id="reqform" style="display: none">
<br />
<form action="/coupon" type="post">
<input class="input-large" type="text" name="email" id="email" placeholder="Email" />
<button class="btn" type="submit" name="send">Send</button>
<form action="/coupon" method="post">
<input class="input-large" type="text" name="email" id="email" placeholder="Email" />
<button class="btn" type="submit">Send</button>
</form>
</div>
<br /><br />
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Expand Up @@ -83,9 +83,9 @@ <h1>OpenSource Node.JS PaaS</h1>
</div>
<div id="reqform" class="c1">
<br />
<form action="/coupon" type="post">
<form action="/coupon" method="post">
<input class="input-large" type="text" name="email" id="email" placeholder="Email" />
<button class="btn" type="submit" name="send">Send</button>
<button class="btn" type="submit">Send</button>
</form>
</div>
<script type="text/javascript">
Expand Down

0 comments on commit 34d61f5

Please sign in to comment.