Added index.jsp for testing and dev purposes.

This commit is contained in:
dev
2011-06-13 12:47:22 +00:00
parent 7d803faaf8
commit 7e3ca87c14

14
src/jsp/index.jsp Normal file
View File

@ -0,0 +1,14 @@
<%@page import="net.i2p.i2pcontrol.I2PControlController" %>
<html>
<head>
<title>I2PControl</title>
</head><body style="background-color: #000; color: #c30; font-size: 400%;">
<h1>
I2PControl
</h1>
<table cellspacing="8">
<tr><td>Torrents:<td align="right"><%=I2PControlController.getTorrents().size()%>
<tr><td>Peers:<td align="right"><%=I2PControlController.getTorrents().countPeers()%>
</table>
</body>
</html>