view find-user.html @ 55:cd51aebfbf68

Removed extraneous logging
author Atul Varma <avarma@mozilla.com>
date Sat, 24 Apr 2010 23:50:23 -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&mdash;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>