Repository: usergrid Updated Branches: refs/heads/master fe3bf5607 -> 689c45082
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/89218501 Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/89218501 Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/89218501 Branch: refs/heads/master Commit: 89218501a838d90b980cc0037ee879ac0bd80189 Parents: a4cc63f Author: Dave Johnson <[email protected]> Authored: Thu Oct 20 16:43:30 2016 -0400 Committer: Michael Russo <[email protected]> Committed: Fri Oct 28 12:20:24 2016 -0700 ---------------------------------------------------------------------- .../UserResource/bad_confirmation_token.jsp | 33 ++++++++++++++++++++ 1 file changed, 33 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/usergrid/blob/89218501/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>
