#load "../../lib/app.uce" RENDER(Request& context) { starter_boot(context); context.call["starter"]["page_title"] = "Login"; StarterUser users(context); DTree result; if(context.params["REQUEST_METHOD"] == "POST") { result = users.sign_in(context.post["email"], context.post["password"]); if(result["result"].to_string() != "") { starter_redirect("account/profile", context); return; } } <>

Login



">Register

}