Create high-performance WebGUIs with little effort in no time at all.
automatically saves user entries into DB
Functionpointer for page render callbacks
Typesafe HTML-attributes and CSS-styles
Framework ready to run. Usemanagement, sessions, mail, and much more included
Linux, Windows, Mac, iOS ...
For C oder C++
Implemented with w3store
Database
| |
static void customer_rd_view(customer_t *cust) { // Callback renders EDIT dialogue for customer
...
DIALOG_START // starts a html <table>
TR TD printf("Name"); // HTML outout to stdout
TD ht_text_simple(&cust->name, size(40)); // save/get name direct from database
TR TD printf("Date Info Letter");
TD cat_timestamp(cust->last_info_letter_sent);
TR TD SPACE
TD ht_submit(null_callback, "save", style(background_color(RED))); // typesafe styles
DIALOG_END
}
|