Fixing a small css issue in the user class.
[elgg.git] / _invite / new_password.php
blob9a66da238fdf1aa3e2cdf38479033cfcaf385d4f
1 <?php
3 // ELGG get new password page
5 // Run includes
6 define("context","external");
7 require_once(dirname(dirname(__FILE__))."/includes.php");
9 run("invite:init");
10 templates_page_setup();
11 $title = sprintf(__gettext("Get new %s password"), sitename);
13 $body = run("invite:password:new");
15 $body = templates_draw(array(
16 'context' => 'contentholder',
17 'title' => $title,
18 'body' => $body
22 echo templates_page_draw( array(
23 $title, $body