175 lines
4.3 KiB
HTML
175 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Endpoints manager</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
|
|
<style>
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
margin: 20px;
|
|
background-color: #f9f9f9;
|
|
color: #333;
|
|
}
|
|
|
|
h1 {
|
|
color: #4CAF50;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 20px 0;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
th, td {
|
|
padding: 12px;
|
|
border: 1px solid #ccc;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
.update-btn {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.update-btn:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
input[type="text"] {
|
|
padding: 8px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
width: calc(100% - 100px);
|
|
margin-right: 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input[type="text"]:focus {
|
|
outline: none;
|
|
border-color: #4CAF50;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 40px;
|
|
color: #333;
|
|
}
|
|
|
|
pre {
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
table, th, td {
|
|
font-size: 14px;
|
|
}
|
|
|
|
input[type="text"] {
|
|
width: calc(100% - 80px);
|
|
}
|
|
|
|
.update-btn {
|
|
padding: 6px 10px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Endpoints Manager</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>URL</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="endpoints-table-body">
|
|
{% for id, url in endpoints.items() %}
|
|
<tr>
|
|
<td>{{ id }}</td>
|
|
<td id="url-{{ id }}">{{ url }}</td>
|
|
<td>
|
|
<input type="text" id="new-url-{{ id }}" placeholder="New URL">
|
|
<button class="update-btn" onclick="updateEndpoint({{ id }})">Update</button>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<h2>cURL Commands</h2>
|
|
<pre>
|
|
# Get all endpoints
|
|
curl http://windows.local:5000/api/endpoints
|
|
|
|
# Get Endpoint 1
|
|
curl http://windows.local:5000/api/endpoints/1
|
|
|
|
# Get Endpoint 2
|
|
curl http://windows.local:5000/api/endpoints/2
|
|
|
|
# Update Endpoint 1
|
|
curl -X PUT http://windows.local:5000/api/endpoints/1 -H "Content-Type: application/json" -d '{"url": "http://new.url/for/endpoint1"}'
|
|
|
|
# Update Endpoint 2
|
|
curl -X PUT http://windows.local:5000/api/endpoints/2 -H "Content-Type: application/json" -d '{"url": "http://new.url/for/endpoint2"}'
|
|
</pre>
|
|
|
|
<script>
|
|
function updateEndpoint(endpointId) {
|
|
const newUrl = document.getElementById(`new-url-${endpointId}`).value;
|
|
if (newUrl) {
|
|
fetch(`http://windows.local:5000/api/endpoints/${endpointId}`, {
|
|
method: 'PUT',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ url: newUrl }),
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.status === 'success') {
|
|
document.getElementById(`url-${endpointId}`).innerText = newUrl;
|
|
} else {
|
|
alert(data.message);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
alert('Failed to update endpoint.');
|
|
});
|
|
} else {
|
|
alert('Please enter a new URL.');
|
|
}
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|