root/releases/0.6/_invite/forgotten_password.php

Revision 339, 0.7 kB (checked in by sven, 3 years ago)

minor HTML validation fixes

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG generate-a-new-password page
4
5     // Run includes
6         require_once(dirname(dirname(__FILE__))."/includes.php");
7         
8         run("profile:init");
9         run("invite:init");
10         
11         templates_page_setup();
12
13         $title = gettext("Generate a New Password");
14         
15         $body .= run("invite:password:request");
16         
17         $body = templates_draw(array(
18                         'context' => 'contentholder',
19                         'title' => $title,
20                         'body' => $body
21                     )
22                     );
23         
24         echo templates_page_draw( array(
25                                         $title, $body, '&nbsp;'
26                     )
27                     );
28
29 ?>
Note: See TracBrowser for help on using the browser.