home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / CMCD0703.ISO / Software / Freeware / Programare / bugzero / jsp / login.jsp < prev    next >
Text File  |  2003-06-05  |  2KB  |  62 lines

  1. <html>
  2. <head>
  3. <title>Bugzero Login</title>
  4. <meta http-equiv=Content-Type content="text/html">
  5. </head>
  6. <body onLoad="focusFirstField()">
  7. <%
  8.   String contextPath = request.getContextPath();
  9.   String query = request.getQueryString();
  10.   String projectId = request.getParameter("projectId");
  11.   String msg = request.getParameter("msg");
  12.   if (msg == null) msg = "";
  13.   String requestUrl = null;
  14.   if (query != null && query.indexOf("requestUri=") != -1) {
  15.     requestUrl = query.substring(query.indexOf("requestUri=") + 11);
  16.   }
  17.   if (requestUrl != null) {
  18.     int index = requestUrl.indexOf('&');
  19.     if (index > -1) {
  20.        requestUrl = requestUrl.substring(0, index)+'?'+requestUrl.substring(index+1);
  21.     }
  22.   }
  23. %>
  24. <center>
  25. <form method="post" action="<%=contextPath%>/servlet/login">
  26. <% if (projectId != null && projectId.trim().length()>0) { %>
  27. <input type="hidden" name="projectId" value="<%=projectId.trim()%>">
  28. <% } %>
  29. <% if (requestUrl != null && requestUrl.trim().length()>0) { %>
  30. <input type="hidden" name="requestUrl" value="<%=requestUrl.trim()%>">
  31. <% } %>
  32. <table cellspacing=2 cellpadding=2 border=0>
  33. <tr><td colspan=2 align=center valign=top height=50>
  34. <font color="#cccc00" size=+1><b>Bugzero</b></font></td></tr>
  35.   <tr><td>Username:</td>
  36.   <td><input type="text" name="username" size=16 maxlength=32></td>
  37.   </tr>
  38.   <tr><td>Password:</td>
  39.   <td><input type="password" name="password" size=16 maxlength=32></td>
  40.   </tr>
  41. <tr><td colspan=2 align=center height=60>
  42. <input type="submit" value=Login>
  43. <script language="Javascript">
  44. <!--
  45. timezone=-new Date().getTimezoneOffset();
  46. document.write("<input type='hidden' name='timezone' value='" + timezone + "'>");
  47.  
  48. function focusFirstField() {
  49.   document.forms[0].username.focus();
  50.   document.forms[0].username.select();
  51. }
  52. //-->
  53. </script>
  54. </td></tr>
  55. </table>
  56. </form>
  57. <font color=red><%=msg%></font>
  58. </center>
  59. <hr>
  60. Copyright © 2003 <a href="http://www.websina.com/bugzero/">WEBsina Inc</a>
  61. </body></html>
  62.