1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-01-13 19:56:40 +00:00
kamokan/src/submit_form_response.cpp

21 lines
440 B
C++
Raw Normal View History

2017-04-04 19:58:40 +00:00
#include "submit_form_response.hpp"
namespace tawashi {
SubmitFormResponse::SubmitFormResponse() :
Response("text/html")
{
}
void SubmitFormResponse::on_send (std::ostream& parStream) {
parStream <<
R"(
<form action="http://127.0.0.1:8080" method="POST" accept-charset="UTF-8">
<textarea name="tawashi" cols="80" rows="24"></textarea>
<br>
<button type="submit">tawashi</button>
</br>
</form>
)";
}
} //namespace tawashi