psy4 / biz_v.html
DmitrMakeev's picture
Update biz_v.html
ec2f9d4 verified
raw
history blame
5 kB
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Request</title>
</head>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
h1 {
background-color: #4CAF50;
color: white;
padding: 20px;
margin: 0;
border-bottom: 2px solid #388E3C;
font-size: 28px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
button[type="submit"] {
color: white;
background-color: #4CAF50;
border: none;
cursor: pointer;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
margin-top: 20px;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #388E3C;
}
#mediaContainer {
margin-top: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-width: 100%;
height: auto;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
padding: 20px;
background-color: white;
}
#mediaContainer img, #mediaContainer video {
max-width: 100%;
height: auto;
object-fit: contain;
border-radius: 10px;
}
#imageUrl {
margin-top: 20px;
font-size: 16px;
color: #333;
cursor: pointer;
text-decoration: underline;
transition: color 0.3s ease;
}
#imageUrl:hover {
color: #4CAF50;
}
#progressBarContainer {
width: 80%;
margin: 20px auto;
background-color: #ddd;
border-radius: 13px;
padding: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
#progressBar {
width: 0%;
height: 20px;
background-color: #4CAF50;
border-radius: 10px;
text-align: center;
line-height: 20px;
color: white;
transition: width 0.3s ease;
}
#filter-field, #filter-type, #filter-value, #filter-clear , #download-json{
padding: 10px;
font-size: 16px;
margin: 5px;
}
#filter-value {
width: 200px;
}
#filter-clear {
padding: 10px 20px;
}
#filter-field, #filter-type, #filter-value, #filter-clear, #download-json {
padding: 10px;
font-size: 16px;
margin: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
#filter-value {
width: 200px;
background-color: #f0f0f0;
}
#filter-clear {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
#filter-clear:hover {
background-color: #388E3C;
}
#download-json {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
#download-json:hover {
background-color: #388E3C;
}
</style>
<body>
<h1>API Request</h1>
<label for="tokenInput">Enter Token:</label>
<input type="text" id="tokenInput" placeholder="Your Token">
<button id="sendRequestButton">Send Request</button>
<textarea id="responseArea" rows="10" cols="50" readonly></textarea>
<script>
document.getElementById('sendRequestButton').addEventListener('click', function() {
const token = document.getElementById('tokenInput').value;
const url = '/send_request';
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: 'token=' + encodeURIComponent(token)
})
.then(response => response.json())
.then(data => {
console.log('JSON Response:', data); // Вывод JSON-ответа в консоль
document.getElementById('responseArea').value = JSON.stringify(data, null, 2);
})
.catch(error => {
console.error('Error:', error);
document.getElementById('responseArea').value = 'Error: ' + error.message;
});
});
</script>
</body>
</html>