コード例 #1
0
ファイル: install.php プロジェクト: stegrams/Typesetter
 function Form_Entry()
 {
     global $langmessage;
     //echo '<h3>'.$langmessage['configuration'].'</h3>';
     //echo '<h3>'.$langmessage['User Details'].'</h3>';
     echo '<form action="' . common::GetUrl('') . '" method="post">';
     echo '<table class="styledtable">';
     Install_Tools::Form_UserDetails();
     Install_Tools::Form_Configuration();
     echo '</table>';
     echo '<p>';
     echo '<input type="hidden" name="cmd" value="Install" />';
     echo '<input type="submit" class="submit install_button" name="aaa" value="' . $langmessage['Install'] . '" />';
     echo '</p>';
     echo '</form>';
 }
コード例 #2
0
ファイル: SetupSite.php プロジェクト: rizub4u/gpEasy-CMS
 function NewInstall()
 {
     includeFile('tool/install.php');
     echo '<form action="' . common::GetUrl('Admin_Site_Setup') . '" method="post">';
     echo '<table style="width:100%">';
     Install_Tools::Form_UserDetails();
     echo '</table>';
     $this->InstallFields($_REQUEST['install'], 'install');
     echo '<div id="install_continue">';
     echo '<input type="submit" name="cmd" value="Install Now" class="continue"/>';
     echo ' <input type="submit" name="" value="Cancel" />';
     echo '</div>';
     echo '</form>';
 }