summaryrefslogtreecommitdiffstats
path: root/application/views/user/reset_password_form.php
blob: 68a3e387ea7082e4b68cc518cbb6b5432cbccf3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php if (!empty($error)) {
	echo "<p>";
	echo implode("<br />\n", $error);
	echo "</p>";
} ?>
<?php echo form_open('user/reset_password/'.$key); ?>
	<table>
		<tr>
			<td>Password</td>
			<td> <input type="password" name="password" /></td>
		</tr><tr>
			<td>Confirm password</td>
			<td> <input type="password" name="password_confirm" /></td>
		</tr><tr>
			<td></td>
			<td><input type="submit" value="Change Password" name="process" /></td>
		</tr>
	</table>
</form>