UNPKG

rutilus-analytics-node-js

Version:

Provides a GUI web app that allows users to examine their data in detail. Includes CSV export functionality.

36 lines 1.42 kB
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Requesting password reset</title> <link href="/css/bootstrap.min.css" rel="stylesheet"> <link href="/css/bootstrap-theme.min.css" rel="stylesheet"> </head> <body> <div style="margin: 100px auto; max-width: 700px"> <form action="/accounts/recover" method="post"> <input type="hidden" value="" name="token" id="token" /> <div class="form-group"> <label>New password:</label> <input class="form-control" type="password" name="password" id="password" /> </div> <div class="form-group"> <label>Confirm your new password:</label> <input class="form-control" type="password" name="password2" id="password2" /> </div> <br /> <br /> <div class="form-group"> <button class="btn btn-primary" type="submit" id="resetButton">Reset password</button> </div> <div class="alert alert-error" style="display: none" id="invalidPasswordAlert"> <strong>Invalid password!</strong> The passwords typed do not match or are smaller than 8 characters </div> <br /> <br /> <a href="/">Back</a> </form> </div> <script src="/passwordResetHelpers.js"></script> </body> </html>