Update 'views/register.tt'

This commit is contained in:
mia 2019-02-23 05:49:25 +01:00
parent bf25528424
commit 7c2002ccad
1 changed files with 5 additions and 5 deletions

View File

@ -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 />
[&nbsp;<button action="submit" class="textButton">register</button>&nbsp;]
[&nbsp;<a href="index" class="bracketButton">go&nbsp;back</a>&nbsp;]
[&nbsp;<button action="submit" class="textButton">Register</button>&nbsp;]
[&nbsp;<a href="index" class="bracketButton">Go&nbsp;back</a>&nbsp;]
<br /><br />
<em>By registering, you agree to be bound by the policies set forward in our <a href="charter">charter</a>.</em>
</form>