Warning: session_start(): open(/var/lib/php/sessions/sess_j7nl95mp8r7slj1l6gig2b9n5d, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// first element of params can be the value
static S htextinput(S name, O... params) {
O value = "";
if (odd(l(params))) {
value = params[0];
params = dropFirst(params);
}
O autofocus = optPar autofocus(params);
params = changeParam(params, autofocus := eqOneOf(autofocus, true, 1, "1", 'autofocus) ? html_valueLessParam() : null);
ret tag("input", "",
concatArrays(new O[] {"type", "text", "name", name, "value", value}, params));
}
static S htextinput(S name) {
ret htextinput(name, "");
}