Add missing bad_confirmation_token.jsp
Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/1abafe72 Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/1abafe72 Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/1abafe72 Branch: refs/heads/usergrid-1318-queue Commit: 1abafe72be217bdc827f6aa386aae93e81260f33 Parents: 9c5f599 Author: Dave Johnson <[email protected]> Authored: Thu Oct 20 16:43:30 2016 -0400 Committer: Dave Johnson <[email protected]> Committed: Thu Oct 20 16:43:30 2016 -0400 ---------------------------------------------------------------------- .../UserResource/bad_confirmation_token.jsp | 33 ++++++++++++++++++++ 1 file changed, 33 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/usergrid/blob/1abafe72/stack/rest/src/main/webapp/WEB-INF/jsp/org/apache/usergrid/rest/management/users/UserResource/bad_confirmation_token.jsp ---------------------------------------------------------------------- diff --git a/stack/rest/src/main/webapp/WEB-INF/jsp/org/apache/usergrid/rest/management/users/UserResource/bad_confirmation_token.jsp b/stack/rest/src/main/webapp/WEB-INF/jsp/org/apache/usergrid/rest/management/users/UserResource/bad_confirmation_token.jsp new file mode 100644 index 0000000..ecd74b8 --- /dev/null +++ b/stack/rest/src/main/webapp/WEB-INF/jsp/org/apache/usergrid/rest/management/users/UserResource/bad_confirmation_token.jsp @@ -0,0 +1,33 @@ +<%@ page language="java" contentType="text/html; charset=ISO-8859-1" + pageEncoding="ISO-8859-1"%> +<%@ page import="org.apache.usergrid.rest.AbstractContextResource"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<!-- +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +--> +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>Error</title> + <link rel="stylesheet" type="text/css" href="/css/styles.css" /> +</head> +<body> + + <p>Confirmation token invalid or expired</p> + +</body> +</html>
