summaryrefslogtreecommitdiff
path: root/includes/pages
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-03-09 16:00:13 +0100
committerPhilip Häusler <msquare@notrademark.de>2014-03-09 16:00:13 +0100
commitab450600d76f79190b956f7f74cbc6a04ebcdf71 (patch)
tree892ef48ae03d0c2213108c0e7c82ba6af043658d /includes/pages
parentf40b78faace47a564e0efbc613fac85b69ed8b3a (diff)
better integration of angeltypes about
Diffstat (limited to 'includes/pages')
-rw-r--r--includes/pages/guest_login.php17
1 files changed, 13 insertions, 4 deletions
diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php
index 4540bffb..153c6450 100644
--- a/includes/pages/guest_login.php
+++ b/includes/pages/guest_login.php
@@ -210,16 +210,25 @@ function guest_login() {
return page(array(
msg(),
- _("Resistance is futile! Your biological and physical parameters will be added to our collectiv! Assimilating angel:"),
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)
)),
+ '<h2>' . register_title() . '</h2>',
+ '<p>' . _("Please sign up, if you want to help us!") . '</p>',
buttons(array(
- button(page_link_to('user_password_recovery'), _("I forgot my password"))
+ button(page_link_to('register'), register_title() . ' &raquo;')
)),
- info(_("Please note: You have to activate cookies!"), true)
+ '<h2>' . _("What can I do?") . '</h2>',
+ '<p>' . _("Please read about the jobs you can do to help us.") . '</p>',
+ buttons(array(
+ button(page_link_to('angeltypes') . '&action=about', _("Teams/Job description") . ' &raquo;')
+ ))
));
}
?>