src/main/webapp/WEB-INF/jspf/error-messages.jspf

Fri, 24 Nov 2023 00:07:26 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 24 Nov 2023 00:07:26 +0100
changeset 295
1c31921664c4
parent 209
c9c6abf167c7
permissions
-rw-r--r--

fix broken link in "create issue" button

universe@209 1 <%--
universe@209 2 ~ Copyright 2021 Mike Becker. All rights reserved.
universe@209 3 ~
universe@209 4 ~ Redistribution and use in source and binary forms, with or without
universe@209 5 ~ modification, are permitted provided that the following conditions are met:
universe@209 6 ~
universe@209 7 ~ 1. Redistributions of source code must retain the above copyright
universe@209 8 ~ notice, this list of conditions and the following disclaimer.
universe@209 9 ~
universe@209 10 ~ 2. Redistributions in binary form must reproduce the above copyright
universe@209 11 ~ notice, this list of conditions and the following disclaimer in the
universe@209 12 ~ documentation and/or other materials provided with the distribution.
universe@209 13 ~
universe@209 14 ~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@209 15 ~ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@209 16 ~ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@209 17 ~ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@209 18 ~ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@209 19 ~ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@209 20 ~ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@209 21 ~ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@209 22 ~ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@209 23 ~ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@209 24 --%>
universe@209 25 <%@page pageEncoding="UTF-8" %>
universe@209 26 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@209 27
universe@209 28 <div class="error-box hcenter">
universe@209 29 <c:forEach var="errorMessage" items="${viewmodel.errorMessages}">
universe@209 30 <div>
universe@209 31 <c:out value="${errorMessage}"/>
universe@209 32 </div>
universe@209 33 </c:forEach>
universe@209 34 </div>

mercurial