summaryrefslogtreecommitdiffstats
path: root/application/views/user/reset_password_form.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/user/reset_password_form.php')
-rw-r--r--application/views/user/reset_password_form.php33
1 files changed, 20 insertions, 13 deletions
diff --git a/application/views/user/reset_password_form.php b/application/views/user/reset_password_form.php
index 9bcbe3697..a6da56708 100644
--- a/application/views/user/reset_password_form.php
+++ b/application/views/user/reset_password_form.php
@@ -3,18 +3,25 @@
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>
+<?php echo form_open('user/reset_password/'.$key, array("class" => "form-horizontal")); ?>
+ <div class="control-group">
+ <label class="control-label" for="inputPassword">Password</label>
+ <div class="controls">
+ <input type="password" id="inputPassword" name="password" placeholder="Password">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label" for="inputPassword">Confirm password</label>
+ <div class="controls">
+ <input type="password" id="inputPasswordConfirm" name="password_confirm" placeholder="Password confirmation">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <div class="controls">
+ <button type="submit" class="btn btn-primary" name="process">Send mail</button>
+ </div>
+ </div>
</form>