mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-23 22:47:57 +01:00
14 lines
644 B
Plaintext
14 lines
644 B
Plaintext
|
<%@ include file="/jsp/init.jsp" %>
|
||
|
<c:url value="mymaps.htm" var="deleteMapUrl">
|
||
|
<c:param name="action" value="delete"/>
|
||
|
<c:param name="mapId" value="${mindmap.id}"/>
|
||
|
<c:param name="userEmail" value="${pageContext.request.userPrincipal.name}"/>
|
||
|
</c:url>
|
||
|
<div>
|
||
|
<spring:message code="DELETE_SELECTED_CONFIRMATION"/>
|
||
|
</div>
|
||
|
<form method="post" id="deleteConfirmation" action="<c:out value="${deleteMapUrl}"/>">
|
||
|
<input type="hidden" name="action" value="deleteMap">
|
||
|
<input type="submit" value="<spring:message code="YES"/>">
|
||
|
<input type="button" value="<spring:message code="NO"/>" onclick="MOOdalBox.close();">
|
||
|
</form>
|