forked from .cyb/cyberman
Update 'views/register.tt'
This commit is contained in:
parent
bf25528424
commit
7c2002ccad
|
@ -42,7 +42,7 @@
|
|||
<label for="email">Email address:</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="email" name="email" id="email" value="<% params.email | html_entity %>" />
|
||||
<input type="email" name="email" id="email" value="<% params.email | html_entity %>" required/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -50,7 +50,7 @@
|
|||
<label for="password">Password:</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="password" name="password" id="password" value="<% params.password | html_entity %>" />
|
||||
<input type="password" name="password" id="password" value="" required/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -58,13 +58,13 @@
|
|||
<label for="password2">Confirm password:</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="password" name="password2" id="password2" value="<% params.password2 | html_entity %>" />
|
||||
<input type="password" name="password2" id="password2" value="" required/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
[ <button action="submit" class="textButton">register</button> ]
|
||||
[ <a href="index" class="bracketButton">go back</a> ]
|
||||
[ <button action="submit" class="textButton">Register</button> ]
|
||||
[ <a href="index" class="bracketButton">Go back</a> ]
|
||||
<br /><br />
|
||||
<em>By registering, you agree to be bound by the policies set forward in our <a href="charter">charter</a>.</em>
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue