tesses-webserver-cpp/wwwroot/cgi-bin/add-todo.twss

13 lines
185 B
Plaintext
Raw Normal View History

2024-09-02 03:19:22 +00:00
<!--tws
2024-09-24 01:31:12 +00:00
t = query_first("text");
if(true)
2024-09-02 03:19:22 +00:00
{
2024-09-24 01:31:12 +00:00
lock();
global todos.add(t);
global save();
unlock();
2024-09-02 03:19:22 +00:00
}
redirect("/");
-->