|
|
|
@ -10,31 +10,35 @@ |
|
|
|
|
|
|
|
|
|
body { |
|
|
|
|
min-height: 100vh; |
|
|
|
|
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%) |
|
|
|
|
background: linear-gradient( |
|
|
|
|
90deg, |
|
|
|
|
rgba(2, 0, 36, 1) 0%, |
|
|
|
|
rgba(9, 9, 121, 1) 35%, |
|
|
|
|
rgba(0, 212, 255, 1) 100% |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
h1{ |
|
|
|
|
h1 { |
|
|
|
|
color: white; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
p{ |
|
|
|
|
color:white; |
|
|
|
|
p { |
|
|
|
|
color: white; |
|
|
|
|
} |
|
|
|
|
.container{ |
|
|
|
|
.container { |
|
|
|
|
margin-left: 20vw; |
|
|
|
|
} |
|
|
|
|
#submit{ |
|
|
|
|
#submit { |
|
|
|
|
margin-top: 20px; |
|
|
|
|
border-radius: 10px; |
|
|
|
|
height: 50px; |
|
|
|
|
width:50vw; |
|
|
|
|
color:black; |
|
|
|
|
width: 50vw; |
|
|
|
|
color: black; |
|
|
|
|
} |
|
|
|
|
#inputText{ |
|
|
|
|
#inputText { |
|
|
|
|
border-radius: 10px; |
|
|
|
|
height: 30px; |
|
|
|
|
width: 49.5vw; |
|
|
|
|
} |
|
|
|
|
.container_result{ |
|
|
|
|
.container_result { |
|
|
|
|
margin-top: 20px; |
|
|
|
|
min-height: 50px; |
|
|
|
|
text-align: center; |
|
|
|
@ -43,8 +47,6 @@ |
|
|
|
|
border-radius: 5px; |
|
|
|
|
background-color: grey; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style> |
|
|
|
|
</head> |
|
|
|
|
<body> |
|
|
|
@ -53,35 +55,41 @@ |
|
|
|
|
<div id="root"> |
|
|
|
|
<div class="form"> |
|
|
|
|
<form id="myForm"> |
|
|
|
|
<input type="text" id="inputText" placeholder="Введите текст"> |
|
|
|
|
<div class="form__button"><button id='submit'>Отправить</button></div> |
|
|
|
|
|
|
|
|
|
<input type="text" id="inputText" placeholder="Введите текст" /> |
|
|
|
|
<div class="form__button"> |
|
|
|
|
<button id="submit">Отправить</button> |
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|
<div class="container_result"> |
|
|
|
|
<p id="response"></p> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<a href="/index_2.html">Перейти на страницу 2</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</body> |
|
|
|
|
<script> |
|
|
|
|
document.getElementById('myForm').addEventListener('submit', async function(event) { |
|
|
|
|
event.preventDefault(); // Предотвращаем отправку формы по умолчанию |
|
|
|
|
<script> |
|
|
|
|
document |
|
|
|
|
.getElementById("myForm") |
|
|
|
|
.addEventListener("submit", async function (event) { |
|
|
|
|
event.preventDefault(); // Предотвращаем отправку формы по умолчанию |
|
|
|
|
|
|
|
|
|
const inputText = document.getElementById('inputText').value; |
|
|
|
|
const inputText = document.getElementById("inputText").value; |
|
|
|
|
|
|
|
|
|
const response = await fetch('/submit', { |
|
|
|
|
method: 'POST', |
|
|
|
|
headers: { |
|
|
|
|
'Content-Type': 'application/x-www-form-urlencoded' |
|
|
|
|
}, |
|
|
|
|
body: new URLSearchParams({ |
|
|
|
|
'text': inputText |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const responseText = await response.text(); |
|
|
|
|
document.getElementById('response').innerText = responseText; |
|
|
|
|
const response = await fetch("/submit", { |
|
|
|
|
method: "POST", |
|
|
|
|
headers: { |
|
|
|
|
"Content-Type": "application/x-www-form-urlencoded", |
|
|
|
|
}, |
|
|
|
|
body: new URLSearchParams({ |
|
|
|
|
text: inputText, |
|
|
|
|
}), |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
const responseText = await response.text(); |
|
|
|
|
document.getElementById("response").innerText = responseText; |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
</html> |
|
|
|
|