Skip to content

Commit

Permalink
Account issues: html5 email type on input fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
tchalvak committed Mar 2, 2014
1 parent 0870e2e commit c906d9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/templates/account_issues.tpl
Expand Up @@ -31,15 +31,15 @@
<h2>Resend Account Information</h2> <h2>Resend Account Information</h2>
<form action="account_issues.php" method="post"> <form action="account_issues.php" method="post">
<p>Submit your account email and your account information will be sent to it:</p> <p>Submit your account email and your account information will be sent to it:</p>
<input id="email" type="text" maxlength="50" name="email" class="textField"> <input id="email" type="email" title="Please enter the email you set your account up with" maxlength="50" name="email" class="textField">
<input type='hidden' name='password_request' value='1'> <input type='hidden' name='password_request' value='1'>
<button type="submit" value="Resend Account Info" class="formButton">Resend Account Info</button> <button type="submit" value="Resend Account Info" class="formButton">Resend Account Info</button>
</form> </form>
<h2>Resend Confirmation Email</h2> <h2>Resend Confirmation Email</h2>


<form action="account_issues.php" method="post"> <form action="account_issues.php" method="post">
<p>Submit your email address and we will resend your confirmation email:</p> <p>Submit your email address and we will resend your confirmation email:</p>
<input id="email" type="text" maxlength="50" name="email" class="textField"> <input id="email" type="email" title="Your account email" maxlength="50" name="email" class="textField">
<input type='hidden' name='confirmation_request' value='1'> <input type='hidden' name='confirmation_request' value='1'>
<button type="submit" value="Resend Confirm Code" class="formButton">Resend Confirm Code</button> <button type="submit" value="Resend Confirm Code" class="formButton">Resend Confirm Code</button>
</form> </form>
Expand Down

0 comments on commit c906d9c

Please sign in to comment.