Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update pw_reset page to use Bootstrap 3 styles
Somehow this got overlooked...
  • Loading branch information
Josh Lavin committed Nov 13, 2015
1 parent c42e3d6 commit e7f73cb
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions dist/strap/pages/query/pw_reset.html
Expand Up @@ -72,9 +72,9 @@ <h1>Password Reset</h1>
password_verify=match password The specified passwords do not match.
[/set]
[if session failure]
<div class="alert alert-error">[calc] delete $Session->{failure}[/calc]</div>
<div class="alert alert-danger">[calc] delete $Session->{failure}[/calc]</div>
[/if]
[error auto=1 show_var=0]
[edisplay show_var=0]
<form action="[process href=@@MV_PAGE@@ secure=1]" method="POST" class="form-horizontal">
<fieldset>
<legend>Thank you for verifying your email address. You must now change your password.</legend>
Expand All @@ -85,20 +85,22 @@ <h1>Password Reset</h1>
<input type=hidden name=mv_successpage value="member/service">
<input type=hidden name=u value="[cgi u]">

<div class="control-group">
<label for="pass" class="control-label">New Password</label>
<div class="controls">
<input type=password name=password id=pass value="" autocomplete="off">
<div class="form-group">
<label for="pass" class="control-label col-sm-2">[L]New Password[/L]</label>
<div class="col-sm-6">
<input class="form-control" type="password" name="password" id="pass" value="" autocomplete="off">
</div>
</div>
<div class="control-group">
<label for="verify" class="control-label">Verify</label>
<div class="controls">
<input type=password name=password_verify id=verify value="" autocomplete="off" oncopy="return false" onpaste="return false" oncut="return false">
<div class="form-group">
<label for="verify" class="control-label col-sm-2">[L]Verify[/L]</label>
<div class="col-sm-6">
<input class="form-control" type="password" name="password_verify" id="verify" value="" autocomplete="off" oncopy="return false" onpaste="return false" oncut="return false">
</div>
</div>
<div class="form-actions">
<input type="submit" value="[L]Change password[/L]" class="btn btn-primary">
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="submit" value="[L]Change password[/L]" class="btn btn-primary">
</div>
</div>
</fieldset>
</form>
Expand Down

0 comments on commit e7f73cb

Please sign in to comment.