Mercurial > prosody-modules
diff mod_password_reset/password_reset/password_reset.html @ 3344:0ce475235ae1
mod_password_reset: New module for self-service password resets via a web page
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 02 Oct 2018 16:09:17 +0100 |
parents | |
children | f7668aee968a |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_password_reset/password_reset/password_reset.html Tue Oct 02 16:09:17 2018 +0100 @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <title>Reset password</title> + <link rel="stylesheet" href="bootstrap.min.css"> +</head> +<body> + <div class="container col-md-4 col-md-offset-4" style="margin-top: 100px"> + <div class="panel panel-default"> + <div class="panel-heading"> + <div class="panel-title">Reset password</div> + </div> + + <div class="panel-body" style="padding: 20px"> + + <p>Please enter a new password.</p> + + <form method="post" class="form-horizontal"> + <div class="form-group" style="margin-right: 0px;"> + <label for="user" class="col-sm-2 control-label">Account:</label> + <div class="input-group col-sm-10"> + <input type="text" name="user" class="form-control" disabled placeholder="{{jid}}"> + </div> + </div> + <div class="form-group" style="margin-right: 0px;"> + <label for="password" class="col-sm-2 control-label">Password:</label> + <div class="input-group col-sm-10"> + <input type="password" name="password" class="form-control" placeholder="password"> + </div> + </div> + <input type="hidden" name="token" value="{{token}}"> + <button type="submit" class="btn btn-primary btn-lg">Reset</button> + </form> + </div> + </div> + </div> +</body> +</html>