forked from I2P_Developers/i2p.i2p
don't truncate hashes, tag for translation, display as b32, trim form data, better form errors, fix removing entries, parameterize form messages (ticket #2108)
46 lines
2.3 KiB
Plaintext
46 lines
2.3 KiB
Plaintext
<%@page contentType="text/html"%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html><head>
|
|
<%@include file="css.jsi" %>
|
|
<%=intl.title("config keyring")%>
|
|
<script src="/js/ajax.js" type="text/javascript"></script>
|
|
<%@include file="summaryajax.jsi" %>
|
|
</head><body onload="initAjax()">
|
|
|
|
<%@include file="summary.jsi" %>
|
|
<h1><%=intl._t("I2P Keyring Configuration")%></h1>
|
|
<div class="main" id="config_keyring">
|
|
<%@include file="confignav.jsi" %>
|
|
|
|
<jsp:useBean class="net.i2p.router.web.helpers.ConfigKeyringHandler" id="formhandler" scope="request" />
|
|
<%@include file="formhandler.jsi" %>
|
|
<jsp:useBean class="net.i2p.router.web.helpers.ConfigKeyringHelper" id="keyringhelper" scope="request" />
|
|
<jsp:setProperty name="keyringhelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
|
|
<p id="keyringhelp" class="infohelp">
|
|
<%=intl._t("The router keyring is used to decrypt encrypted leaseSets.")%>
|
|
<%=intl._t("The keyring may contain keys for local or remote encrypted destinations.")%></p>
|
|
<jsp:getProperty name="keyringhelper" property="summary" />
|
|
<form action="" method="POST">
|
|
<input type="hidden" name="nonce" value="<%=pageNonce%>" >
|
|
<h3 class="tabletitle"><%=intl._t("Manual Keyring Addition")%></h3>
|
|
<table id="addkeyring">
|
|
<tr>
|
|
<td class="infohelp" colspan="2">
|
|
<%=intl._t("Enter keys for encrypted remote destinations here.")%>
|
|
<%=intl._t("Keys for local destinations must be entered on the")%> <a href="i2ptunnel/"><%=intl._t("I2PTunnel page")%></a>.
|
|
</td>
|
|
</tr><tr>
|
|
<td align="right"><b><%=intl._t("Full destination, name, base 32, or hash")%>:</b></td>
|
|
<td><textarea name="peer" cols="44" rows="1" style="height: 3em;" wrap="off" spellcheck="false"></textarea></td>
|
|
</tr><tr>
|
|
<td align="right"><b><%=intl._t("Encryption Key")%>:</b></td>
|
|
<td><input type="text" size="55" name="key" ></td>
|
|
</tr><tr>
|
|
<td align="right" colspan="2">
|
|
<input type="reset" class="cancel" value="<%=intl._t("Cancel")%>" >
|
|
<input type="submit" name="action" class="delete" value="<%=intl._t("Delete key")%>" >
|
|
<input type="submit" name="action" class="add" value="<%=intl._t("Add key")%>" >
|
|
</td></tr></table></form></div></body></html>
|