Zdalne-systemy-z-kit-uVPN/templates/index.html

121 lines
3.0 KiB
HTML
Raw Normal View History

2023-04-13 09:54:05 +00:00
<!DOCTYPE html>
<html>
2023-04-13 09:54:05 +00:00
<head>
<title>Panel administracyjny</title>
2023-04-19 10:12:38 +00:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
2023-04-19 10:27:09 +00:00
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
h1 {
font-size: 32px;
font-weight: bold;
color: #333;
margin: 20px 0;
}
table {
border-collapse: collapse;
margin: 20px 0;
width: 100%;
}
table th, table td {
padding: 10px;
text-align: left;
vertical-align: middle;
border: 1px solid #ccc;
}
table th {
background-color: #eee;
font-weight: bold;
}
table tr:hover {
background-color: #f0f0f0;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px 0;
cursor: pointer;
}
button:hover {
background-color: #3e8e41;
}
</style>
2023-04-13 09:54:05 +00:00
</head>
<body>
2023-04-19 10:27:09 +00:00
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Panel administracyjny</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav" >
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Lista maszyn</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/create/conf">Tworzenie obrazu</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/logout">Wyloguj</a>
</li>
</ul>
</div>
</div>
</nav>
2023-04-19 10:12:38 +00:00
<div class="container">
<h1 class="my-5">Lista maszyn</h1>
<table class="table table-striped table-hover">
<thead>
2023-04-19 07:43:00 +00:00
<tr>
<th>Nazwa maszyny(token)</th>
2023-04-19 10:12:38 +00:00
<th>Obraz</th>
<th>Czas uruchomienia ({{ timezone }})</th>
2023-04-19 10:12:38 +00:00
<th>IP uVPN</th>
<th>IP lokalne</th>
<th></th>
2023-04-19 07:43:00 +00:00
</tr>
2023-04-19 10:12:38 +00:00
</thead>
<tbody>
{% for machine in machines %}
<tr>
<td>{{ machine.name }}</td>
<td>{{ machine.image_name }}</td>
<td>{{ machine.start_time }}</td>
<td>{{ machine.ipvpn }}</td>
<td>{{ machine.iplocal }}</td>
<td><button class="btn btn-primary" onclick="ssh('{{ machine.ipvpn }}', '{{ machine.username }}', '{{ machine.password }}')">SSH</button></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<script>
function ssh(ipvpn, username, password) {
2023-04-19 10:12:38 +00:00
const currentLocation = window.location;
const newUrl = currentLocation.protocol + '//' + currentLocation.hostname + ':' + {{ ssh_port }} + "/?hostname="+ipvpn+"&username="+username+"&password="+btoa(password);
window.open(newUrl,"_blank");
}
</script>
2023-04-13 09:54:05 +00:00
</body>
</html>