Newer
Older
jetty / web / safe_search.jsp
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="css/style.css"/>
  5. <title>Awesome Web Site - Product Search</title>
  6. </head>
  7. <body>
  8. <div id="content">
  9.  
  10. <%@include file="/WEB-INF/jspf/menu.jspf" %>
  11.  
  12. <h1>Welcome to our awesome web site!</h1>
  13.  
  14. <h2>Input sanitisation using OWASP AntiSamy</h2>
  15.  
  16. <fieldset><legend>Search for a product</legend>
  17. <form action="safe_searchresults.jsp" method="POST">
  18. <label>Key words <input type="text" name="keywords"></label>
  19. <input type="submit" value="Search">
  20. </form>
  21. </fieldset>
  22.  
  23. </div>
  24. </body>
  25. </html>