zmiana wygladu strony

This commit is contained in:
Mateusz779 2023-04-19 12:12:38 +02:00
parent 5c7bb023c0
commit 32d044c721
3 changed files with 32 additions and 33 deletions

View File

@ -5,3 +5,4 @@ password="2a7driUITXFy73tO"
port="5432" port="5432"
default_file = "default.squashfs" default_file = "default.squashfs"
webssh_port = "8000" webssh_port = "8000"
timezone = "UTC"

2
db.py
View File

@ -17,7 +17,7 @@ def connect():
cur = conn.cursor() cur = conn.cursor()
with conn.cursor() as cur: with conn.cursor() as cur:
cur.execute("SET TIMEZONE='UTC';") cur.execute("SET TIMEZONE='%s'",(config.timezone,))
conn.commit() conn.commit()
cur.execute(""" cur.execute("""
CREATE TABLE IF NOT EXISTS image ( CREATE TABLE IF NOT EXISTS image (

View File

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<title>Panel administracyjny</title> <title>Panel administracyjny</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style> <style>
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
@ -59,8 +60,9 @@
</style> </style>
</head> </head>
<body> <body>
<h1>Lista maszyn</h1> <div class="container">
<table> <h1 class="my-5">Lista maszyn</h1>
<table class="table table-striped table-hover">
<thead> <thead>
<tr> <tr>
<th>Nazwa maszyny</th> <th>Nazwa maszyny</th>
@ -79,21 +81,17 @@
<td>{{ machine.start_time }}</td> <td>{{ machine.start_time }}</td>
<td>{{ machine.ipvpn }}</td> <td>{{ machine.ipvpn }}</td>
<td>{{ machine.iplocal }}</td> <td>{{ machine.iplocal }}</td>
<td><button onclick="ssh('{{ machine.ipvpn }}', '{{ machine.username }}', '{{ machine.password }}')">SSH</button></td> <td><button class="btn btn-primary" onclick="ssh('{{ machine.ipvpn }}', '{{ machine.username }}', '{{ machine.password }}')">SSH</button></td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
</div>
<script> <script>
function ssh(ipvpn, username, password) { function ssh(ipvpn, username, password) {
const currentLocation = window.location; const currentLocation = window.location;
// budowanie nowego URL
const newUrl = currentLocation.protocol + '//' + currentLocation.hostname + ':' + {{ ssh_port }} + "/?hostname="+ipvpn+"&username="+username+"&password="+btoa(password); const newUrl = currentLocation.protocol + '//' + currentLocation.hostname + ':' + {{ ssh_port }} + "/?hostname="+ipvpn+"&username="+username+"&password="+btoa(password);
console.log(newUrl);
// przekierowanie na nowy URL
window.open(newUrl,"_blank"); window.open(newUrl,"_blank");
} }
</script> </script>