Casual_blog/content/hidden/phd2/feedback.md
2024-05-21 08:52:25 +03:00

92 lines
2.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

+++
Title = "Ваш фидбек"
draft = false
hidden = true
+++
Оцените мой доклад!
Вы можете оставить фидбек в вольной форме или ответить на следующие вопросы:
- На сколько доклад держит ваше внимание (интерес)? (от 1 до 10)
- На сколько доклад забавный?
- На сколько доклад мотивирующий?
- На сколько доклад познавательный? Много ли вы нового узнали?
- Какой вывод вы можете сделать из доклада?
<style>
.form-container {
<!-- border-radius: 10px; -->
width: 400px; /* Width of the form container */
margin: 0 auto; /* Center the form container horizontally */
}
.form-container label,
.form-container input {
display: block;
margin-bottom: 10px;
<!-- height: 100px -->
}
.form-container button {
background-color: #333333; /* Gray background color for the button */
color: #fff; /* Text color for the button */
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.form-container button:hover {
background-color: #888; /* Darker gray color on hover */
}
</style>
<div class="form-container">
<form id="postForm">
<textarea rows="5" cols="50" id="textField" name="textField">
</textarea>
<!-- <input type="text" id="textField" name="textField"> -->
<br>
<button type="button" onclick="sendPostRequest()">Send</button>
</form>
</div>
<script>
function sendPostRequest() {
var textFieldData = document.getElementById("textField").value;
var xhr = new XMLHttpRequest();
var url = "https://blog.ca.sual.in/api/message";
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
console.log(xhr.responseText);
}
};
var data = JSON.stringify({"text": textFieldData, "username": "PHD2_feedback", "gateway": "gateway1"});
xhr.send(data);
alert("I got your message, thanks!")
}
</script>
---
## Контакты
+ [Блог](https://blog.ca.sual.in/)
+ [Блог в телеге](https://t.me/casualblog)
+ [TG](https://t.me/AlexeyInfosec)
+ [XMPP](xmpp://casual@pwned.life)
## Материалы
- [Презентация](/hidden/PHD2_presentation.pptx)
- [Abstract](../abstract)
- [Транскрипция доклада](../trans)
- [Keypoints](../keypoints)
- [Лицензия доклада](../license)