SecondPage.jsp 768 B

12345678910111213141516171819202122232425262728
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: Кинетик
  4. Date: 28.12.2016
  5. Time: 19:07
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>Second Page</title>
  12. </head>
  13. <body>
  14. Введенное имя: ${userJSP.name};
  15. <br/>
  16. Введенный пароль: ${userJSP.password};
  17. <br/>
  18. <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
  19. <div class="logo"></div>
  20. <div class="login-block">
  21. <h1>Login</h1>
  22. <input type="text" value="" placeholder="Username" id="username" />
  23. <input type="password" value="" placeholder="Password" id="password" />
  24. <button>Submit</button>
  25. </div>
  26. </body>
  27. </html>