92 lines
2.5 KiB
HTML
92 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{lang_code}}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="/favicon.png" type="image/png">
|
|
<title>i2pd tunnel wizard</title>
|
|
<style>
|
|
html, body {
|
|
background-color: #f0f0f0;
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
.container {
|
|
max-width: 750px;
|
|
width: 100%;
|
|
margin: 20px auto;
|
|
background-color: white;
|
|
padding: 10px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.tblp {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
}
|
|
th {
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
background-color: #e0e0e0;
|
|
}
|
|
td {
|
|
text-align: left;
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
}
|
|
td:last-child {
|
|
width: 100px;
|
|
}
|
|
button {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background-color: #007bff;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
transition: background-color 0.3s;
|
|
margin-top: 20px;
|
|
border: none;
|
|
}
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
font-size: 12px;
|
|
color: #666;
|
|
padding: 10px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<a href="/" title="{{to_start_title}}" style="text-decoration: none"><h1><span style="color: purple">i2pd</span> <span style="color: black">tunnel wizard</span></h1></a>
|
|
<h2><p style="text-align: center; color: #005f00">{{tagline}}</p></h2>
|
|
{{form}}
|
|
</div>
|
|
|
|
<footer>
|
|
<div>
|
|
<a href="{{url}}&lang=en">English</a> | <a href="{{url}}&lang=ru">Русский</a>
|
|
</div>
|
|
<a href="http://git.community.i2p/acetone/i2pdtunnelwizard" target="_blank" style="text-decoration: none">i2pd tunnel wizard</a> v{{version}} <br>
|
|
acetone, 2025 (no copyright)
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|