From 74647e16d37fac9425a4561b49618b52cdc3e75c Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Fri, 22 Aug 2014 22:34:13 +0200 Subject: add basic bootstrap theme --- includes/pages/guest_login.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'includes/pages/guest_login.php') diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php index e4188151..29487f99 100644 --- a/includes/pages/guest_login.php +++ b/includes/pages/guest_login.php @@ -135,7 +135,7 @@ function guest_register() { } } - return page(array( + return page_with_title(register_title(), array( _("By completing this form you're registering as a Chaos-Angel. This script will create you an account in the angel task sheduler."), $msg, msg(), @@ -208,17 +208,20 @@ function guest_login() { } } - return page(array( + return page_with_title(login_title(), array( msg(), + '
', form(array( form_text('nick', _("Nick"), $nick), form_password('password', _("Password")), + form_submit('submit', _("Login")), form_info("", buttons(array( button(page_link_to('user_password_recovery'), _("I forgot my password")) ))), - form_submit('submit', _("Login")), info(_("Please note: You have to activate cookies!"), true) )), + '
', + '
', '

' . register_title() . '

', '

' . _("Please sign up, if you want to help us!") . '

', buttons(array( @@ -228,7 +231,8 @@ function guest_login() { '

' . _("Please read about the jobs you can do to help us.") . '

', buttons(array( button(page_link_to('angeltypes') . '&action=about', _("Teams/Job description") . ' »') - )) + )), + '
' )); } ?> -- cgit v1.2.3-54-g00ecf