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