26 lines
940 B
Plaintext
26 lines
940 B
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Charm Registration</title>
|
|
<%@ include file="style.html" %>
|
|
</head>
|
|
<body>
|
|
<%@ include file="header.jsp" %>
|
|
<div>
|
|
<form method="post" action="/registration">
|
|
<table>
|
|
<tr>
|
|
<td><h3>${requestScope.wordBundle.getWord("email")}</h3></td>
|
|
<td><input type="email" name="email" placeholder="user@charm.ru"></td>
|
|
</tr>
|
|
<tr>
|
|
<td><h3>${requestScope.wordBundle.getWord("password")}</h3></td>
|
|
<td><input type="password" name="password"></td>
|
|
</tr>
|
|
</table>
|
|
<button type="submit">${requestScope.wordBundle.getWord("save")}</button>
|
|
</form>
|
|
</div>
|
|
<%@ include file="footer.jsp" %>
|
|
</body>
|
|
</html> |