home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / bugzero / jsp / create.jsp < prev    next >
Encoding:
Text File  |  2005-03-31  |  549 b   |  24 lines

  1. <%@ page
  2.     import="com.websina.bean.*,com.websina.util.*,com.websina.util.log.Log"
  3. %>
  4. <html>
  5. <head>
  6. <title>Create and Submit</title>
  7. <script LANGUAGE="JavaScript" src="script/attachment.js"></script>
  8. </head>
  9. <body topmargin=0>
  10. <%@ include file="_header.jspf" %>
  11. <%      
  12.   if (!person.isAllowed("create")) {
  13.     out.print("<center><font color=red><b>");
  14.     out.print(MessageCode.get("servlet.permission_denied"));
  15.     out.print("</b></font></center>");
  16.     return;
  17.   }
  18.   int entryId = 0;
  19. %>
  20.  
  21. <%@ include file="_issueform.jspf" %>
  22.  
  23. </body></html>
  24.