File: _reg_complete.php

package info (click to toggle)
b2evolution 0.9.2-3
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 12,976 kB
  • ctags: 5,460
  • sloc: php: 58,989; sh: 298; makefile: 36
file content (31 lines) | stat: -rw-r--r-- 1,021 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php 
/**
 * This is displayed when registration is complete
 *
 * b2evolution - {@link http://b2evolution.net/}
 * Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
 * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
 *
 * @package htsrv
 */

/**
 * Include page header:
 */
$page_title = T_('Registration complete');
$page_icon = 'icon_register.gif';
require(dirname(__FILE__).'/_header.php'); 
?>
<p><?php echo T_('Login:') ?> <strong><?php echo $login ?>&nbsp;</strong></p>
<p><?php echo T_('Email') ?>: <strong><?php echo $email ?>&nbsp;</strong></p>

<form name="login" action="<?php echo $htsrv_url ?>/login.php" method="post">
<input type="hidden" name="log" value="<?php echo $login ?>" />
<input type="hidden" name="redirect_to" value="<?php echo $redirect_to ?>" />
<input type="submit" class="search" value="<?php  echo T_('Log in!') ?>" name="submit" />
</form>


<?php 
	require(dirname(__FILE__).'/_footer.php'); 
?>