mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-26 09:43:54 -04:00
Change the login form so that the legend is populated
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
class Login_Controller extends Controller {
|
||||
public function index() {
|
||||
$form = new Forge(url::current(true), "", "post", array("id" => "gLoginForm"));
|
||||
$group = $form->group(_("Login"));
|
||||
$group = $form->group("login_form")->label(_("Login"));
|
||||
$group->input("name")->label(_("Name"))->id("gName")->class(null);
|
||||
$group->password("password")->label(_("Password"))->id("gPassword")->class(null);
|
||||
$group->submit(_("Login"));
|
||||
|
||||
Reference in New Issue
Block a user