getendpoints/templates/index copy.html

109 lines
2.9 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;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 10px;
border: 1px solid #ccc;
text-align: left;
}
th {
background-color: #f4f4f4;
}
.update-btn {
background-color: #4CAF50;
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
}
</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>