#load "../../lib/app.uce" RENDER(Request& context) { starter_boot(context); if(!starter_is_signed_in(context)) { starter_redirect("account/login", context); return; } context.var["starter"]["page_title"] = "Profile"; DTree user = starter_current_user(context); String roles = ""; user["roles"].each([&](DTree role, String key) { if(roles != "") roles += ", "; roles += role.to_string(); }); <>

Profile

Email:

Roles:

Created:

">Logout

}