forked from I2P_Developers/i2p.i2p
18 lines
585 B
Plaintext
18 lines
585 B
Plaintext
<%@page contentType="text/html"%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<!DOCTYPE html>
|
|
<%
|
|
response.setStatus(404);
|
|
%>
|
|
<html><head>
|
|
<%@include file="css.jsi" %>
|
|
<%=intl.title("WebApp Not Found")%>
|
|
<%@include file="summaryajax.jsi" %>
|
|
</head><body>
|
|
<%@include file="summary.jsi" %>
|
|
<h1><%=intl._t("Web Application Not Running")%></h1>
|
|
<div class="sorry" id="warning">
|
|
<%=intl._t("The requested web application is not running.")%>
|
|
<%=intl._t("Please visit the {0}config clients page{1} to start it.", "<a href=\"/configwebapps.jsp#webapp\" target=\"_top\">", "</a>")%>
|
|
</div></body></html>
|