mirror of
https://github.com/gigirassy/plaster.git
synced 2024-12-23 10:29:07 +00:00
Create client.js
This commit is contained in:
parent
fad6b05f9e
commit
1afe2b27bc
17
public/client.js
Normal file
17
public/client.js
Normal file
@ -0,0 +1,17 @@
|
||||
document.getElementById('fetchBtn').addEventListener('click', async () => {
|
||||
const urlInput = document.getElementById('pasteUrl').value;
|
||||
const output = document.getElementById('output');
|
||||
output.textContent = 'Loading...';
|
||||
|
||||
try {
|
||||
const response = await fetch(`/fetch-paste?url=${encodeURIComponent(urlInput)}`);
|
||||
const data = await response.json();
|
||||
if (data.error) {
|
||||
output.textContent = `Error: ${data.error}`;
|
||||
} else {
|
||||
output.textContent = data.text;
|
||||
}
|
||||
} catch (error) {
|
||||
output.textContent = `Error: ${error.message}`;
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue
Block a user