26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Charm Profiles</title>
|
|
<%@ include file="style.html" %>
|
|
</head>
|
|
<body>
|
|
<%@ include file="header.jsp" %>
|
|
<div>
|
|
<h3 style="color: red">${requestScope.wordBundle.getWord("email-warning")}</h3>
|
|
<form method="post" action="/email">
|
|
<input type="hidden" name="_method" value="put"/>
|
|
<input type="hidden" name="id" value="${requestScope.profile.id}">
|
|
<table>
|
|
<tr>
|
|
<td><h3>${requestScope.wordBundle.getWord("email")}</h3></td>
|
|
<td><input type="email" name="email" value="${requestScope.profile.email}"></td>
|
|
</tr>
|
|
</table>
|
|
<button type="submit">${requestScope.wordBundle.getWord("save")}</button>
|
|
</form>
|
|
</div>
|
|
<%@ include file="footer.jsp" %>
|
|
</body>
|
|
</html> |