mirror of
https://github.com/e107inc/e107.git
synced 2025-02-21 23:23:00 +01:00
74 lines
2.5 KiB
PHP
74 lines
2.5 KiB
PHP
<?php
|
|
// $Id: fpw_template.php,v 1.2 2007-12-06 21:35:55 e107steved Exp $
|
|
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
if (!defined("USER_WIDTH")){ define("USER_WIDTH","width:70%"); }
|
|
|
|
// ##### FPW TABLE -----------------------------------------------------------------------------
|
|
if(!isset($FPW_TABLE))
|
|
{
|
|
$FPW_TABLE = "
|
|
<div style='text-align:center'>
|
|
<form method='post' action='".e_SELF."'>
|
|
<table style='".USER_WIDTH."' class='fborder'>
|
|
|
|
<tr>
|
|
<td class='fcaption' colspan='2'>".LAN_05."</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class='forumheader3' style='width:70%'>".LAN_FPW1.":</td>
|
|
<td class='forumheader3' style='width:30%;text-align:center'>
|
|
<input class='tbox' type='text' name='username' size='40' value='' maxlength='100' />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class='forumheader3' style='width:70%'>".LAN_112.":</td>
|
|
<td class='forumheader3' style='width:30%; text-align:center'>
|
|
<input class='tbox' type='text' name='email' size='40' value='' maxlength='100' />
|
|
</td>
|
|
</tr>";
|
|
|
|
if($FPW_TABLE_SECIMG_SECIMG){
|
|
$FPW_TABLE .= "
|
|
<tr>
|
|
<td class='forumheader3' style='width:25%'>{FPW_TABLE_SECIMG_LAN}</td>
|
|
<td class='forumheader3' style='width:75%;text-align:left'>{FPW_TABLE_SECIMG_HIDDEN} {FPW_TABLE_SECIMG_SECIMG}<br />
|
|
{FPW_TABLE_SECIMG_TEXTBOC}<br />
|
|
</td>
|
|
</tr>";
|
|
}
|
|
|
|
$FPW_TABLE .="
|
|
<tr style='vertical-align:top'>
|
|
<td class='forumheader' colspan='2' style='text-align:center'>
|
|
<input class='button' type='submit' name='pwsubmit' value='".LAN_156."' />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>";
|
|
}
|
|
// ##### ------------------------------------------------------------------------------------------
|
|
|
|
// ##### FPW HEADER TABLE -------------------------------------------------------------------------
|
|
if(!isset($FPW_TABLE_HEADER))
|
|
{
|
|
$FPW_TABLE_HEADER = "
|
|
<div style='width:100%;text-align:center;margin-left:auto;margin-right:auto'>
|
|
<div style='width:70%;margin-left:auto;margin-right:auto;text-align:center;'><br />
|
|
".(file_exists(THEME."images/login_logo.png") ? "<img src='".THEME."images/login_logo.png' alt='' />\n" : "<img src='".e_IMAGE."logo.png' alt='' />\n")."
|
|
<br />";
|
|
}
|
|
// ##### ------------------------------------------------------------------------------------------
|
|
|
|
// ##### FPW FOOTER TABLE -------------------------------------------------------------------------
|
|
if(!isset($FPW_TABLE_FOOTER))
|
|
{
|
|
$FPW_TABLE_FOOTER = "</div></div>";
|
|
}
|
|
// ##### ------------------------------------------------------------------------------------------
|
|
|
|
?>
|