Mercurial > bugzilla-dashboard
view find-user.html @ 72:0eab9a3ff12f
replaced my last commit w/ a serial xhr queue, so that the dashboard requests are serialized but other ones aren't.
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Sun, 25 Apr 2010 18:21:34 -0700 |
parents | 4ffc1b9d249b |
children |
line wrap: on
line source
<html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" media="all" href="css/jquery-ui.css" /> <link rel="stylesheet" type="text/css" media="all" href="css/dashboard.css" /> <link rel="stylesheet" type="text/css" media="all" href="css/file-bug.css" /> <title>Atul's User-Finder</title> </head> <body> <div id="reports"> <h1>Atul's User-Finder</h1> <form id="find-user"> <p>Just type in part of a user name below. You can optionally open a customized Bugzilla dashboard for the user, too.</p> <p>You'll also need to provide your username and password to perform the search. Your browser sends these credentials directly to Bugzilla over a secure connection—no third parties can access them, including the server this page is hosted on.</p> <table> <tr> <td>Your Username</td> <td><input type="text" id="username" value="avarma@mozilla.com"/></td> </tr> <tr> <td>Your Password</td> <td><input type="password" id="password"/></td> </tr> <tr> <td>Name</td> <td><input type="text" id="query"/></td> </tr> </table> <br/> <input type="submit" id="submit" value="Show User Dashboard"/> </form> </div> </body> <script src="js/jquery.js"></script> <script src="js/jquery-ui.js"></script> <script src="js/bugzilla.js"></script> <script src="js/find-user.js"></script> </html>