KTVManager_UI/templates/user_accounts.html

119 lines
4.9 KiB
HTML
Raw Normal View History

2024-11-02 17:06:56 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-11-02 20:04:56 +00:00
<title>KTVManager</title>
2024-11-02 17:06:56 +00:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css">
2024-11-02 20:15:23 +00:00
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.2.9/css/responsive.dataTables.min.css">
<script src="https://cdn.datatables.net/responsive/2.2.9/js/dataTables.responsive.min.js"></script>
2024-11-02 17:06:56 +00:00
<style>
/* Blur effect for the password field */
.password-blur {
filter: blur(4px);
transition: filter 0.3s ease;
}
</style>
</head>
<body>
2024-11-02 20:15:23 +00:00
<!-- Navbar -->
2024-11-02 17:06:56 +00:00
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
2024-11-02 20:24:36 +00:00
<a class="navbar-brand" href="/">KTVManager</a>
2024-11-02 17:06:56 +00:00
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
2024-11-02 20:15:23 +00:00
<a class="nav-link" href="/accounts">Accounts</a>
2024-11-02 17:06:56 +00:00
</li>
<li class="nav-item">
2024-11-02 20:15:23 +00:00
<a class="nav-link" href="/urls">URLs</a>
2024-11-02 17:06:56 +00:00
</li>
</ul>
</div>
</nav>
<!-- Main Content -->
<div class="container mt-5">
2024-11-02 20:04:56 +00:00
<h2>{{ username }}'s Accounts</h2>
2024-11-02 20:15:23 +00:00
<div class="table-responsive">
<table class="table table-striped" id="accountsTable">
<thead>
<tr>
<th>#</th>
<th>Username</th>
<th>Stream</th>
<th>Stream URL</th>
<th>Expiry Date</th>
<th>Password</th>
</tr>
</thead>
<tbody>
{% for account in user_accounts %}
<tr>
<td>{{ loop.index }}</td>
<td>{{ account.username }}</td>
<td>{{ account.stream }}</td>
<td><a href="{{ account.streamURL }}" target="_blank">{{ account.streamURL }}</a></td>
<td>{{ account.expiaryDate_rendered }}</td>
<td class="password-cell" data-password="{{ account.password }}">
<span class="password-blur">********</span>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
2024-11-02 17:06:56 +00:00
</div>
<footer class="bg-dark text-white text-center py-3 mt-5">
2024-11-02 20:04:56 +00:00
<p>&copy; 2024 KTVManager | All rights reserved</p>
2024-11-02 17:06:56 +00:00
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.0.7/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
// Custom sorting for dates in DD/MM/YYYY format
$.fn.dataTable.ext.type.order['date-eu'] = function(data) {
const parts = data.split('/');
return new Date(parts[2], parts[1] - 1, parts[0]).getTime();
};
const table = $('#accountsTable').DataTable({
"searching": true,
"ordering": true,
2024-11-02 20:15:23 +00:00
"responsive": true, // Enable responsive layout
2024-11-02 17:06:56 +00:00
"columnDefs": [
{ "type": "date-eu", "targets": 4 } // Column index for Expiry Date
]
});
// Use event delegation for password cell clicks
$('#accountsTable tbody').on('click', '.password-cell', function() {
const $cell = $(this);
const password = $cell.data('password');
$cell.html(password); // Display the actual password
$cell.removeClass('password-blur'); // Remove blur effect
// Add click outside event to blur it again
$(document).one('click', function(event) {
if (!$(event.target).closest('.password-cell').length) {
$cell.html('<span class="password-blur">********</span>'); // Restore blurred password
$cell.addClass('password-blur'); // Restore blur effect
}
});
});
});
</script>
</body>
</html>