Browse Source

fixes the sign in form on index page

damien 11 years ago
parent
commit
f9a8c8b57e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      pboard/pboard/templates/index.mak

+ 4 - 4
pboard/pboard/templates/index.mak View File

@@ -45,10 +45,10 @@
45 45
       <form class="well" action="${tg.url('/public_api/create_account')}">
46 46
         <fieldset>
47 47
           <legend>Sign up</legend>
48
-          <input type="text" id="email" placeholder="Email"><br/>
49
-          <input type="text" id="password" placeholder="Password"><br/>
50
-          <input type="text" id="retyped_password" placeholder="Retype your password"><br/>
51
-          <input type="submit" id="submit" value="Sign up" /><br/>
48
+          <input type="text"     name="email"            id="email" placeholder="Email"><br/>
49
+          <input type="password" name="password"         id="password" placeholder="Password"><br/>
50
+          <input type="password" name="retyped_password" id="retyped_password" placeholder="Retype your password"><br/>
51
+          <input type="submit"   id="submit" value="Sign up" /><br/>
52 52
         </fieldset>
53 53
       </form>
54 54
     </div>