-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #961 from support-project/issue926_signup
#926 Change page transition after double opt-in
- Loading branch information
Showing
6 changed files
with
62 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<%@page import="org.support.project.web.util.JspUtil"%> | ||
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false" errorPage="/WEB-INF/views/commons/errors/jsp_error.jsp"%> | ||
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> | ||
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> | ||
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> | ||
|
||
<% JspUtil jspUtil = new JspUtil(request, pageContext); %> | ||
|
||
<c:import url="/WEB-INF/views/commons/layout/layoutMain.jsp"> | ||
|
||
<c:param name="PARAM_HEAD"> | ||
</c:param> | ||
|
||
<c:param name="PARAM_SCRIPTS"> | ||
</c:param> | ||
|
||
<c:param name="PARAM_CONTENT"> | ||
<h4 class="title"><%= jspUtil.label("knowledge.signup.title") %></h4> | ||
|
||
<p> | ||
<%= jspUtil.label("knowledge.signup.done") %> | ||
</p> | ||
|
||
<p> | ||
<a href="<%= request.getContextPath() %>/open.knowledge/list" class="btn btn-info"><%= jspUtil.label("knowledge.signup.done.link") %></a> | ||
</p> | ||
|
||
</c:param> | ||
|
||
</c:import> |