root/releases/0.1.2a/_invite/new_password.php

Revision 7, 448 bytes (checked in by sven, 3 years ago)

snapshot of elgg 0.1.2a

Line 
1 <?php
2
3     //    ELGG get new password page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("invite:init");
9         
10         $title = "Get new " . sitename . " password";
11         
12         $body .= run("invite:password:new");
13         
14         $body = run("templates:draw", array(
15                         'context' => 'infobox',
16                         'name' => $title,
17                         'contents' => $body
18                     )
19                     );
20         
21         echo run("templates:draw:page", array(
22                         $title, $body
23                     )
24                     );
25
26 ?>
Note: See TracBrowser for help on using the browser.