blob: 98bef9df5bf7027d74f0f08c3e3a108b1d6b9752 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
if (!empty($error)) {
echo "<p class='alert alert-danger'>";
echo implode("<br />\n", $error);
echo "</p>";
}
if ($hash) {
echo "<p>Result (this hash uses a random salt, so it will be different each time you submit this form):<br />$hash</p>\n";
}
?>
<?php echo form_open('user/hash_password'); ?>
<div class="row">
<div class="form-group col-lg-10 col-md-10">
<label class="control-label col-lg-2 col-md-2" for="inputPassword">Password</label>
<div class="col-lg-5 col-md-5">
<input type="password" id="inputPassword" name="password" placeholder="Password" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="form-group col-lg-10 col-md-10">
<label class="control-label col-lg-2 col-md-2" for="inputPassword">Confirm password</label>
<div class="col-lg-5 col-md-5">
<input type="password" id="inputPasswordConfirm" name="password_confirm" placeholder="Password confirmation" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="form-group col-lg-10 col-md-10">
<div class="col-lg-offset-2 col-lg-5 col-md-offset-2 col-md-5">
<button type="submit" class="btn btn-primary" name="process">Hash it</button>
</div>
</div>
</form>
|