equal
deleted
inserted
replaced
19 |
19 |
20 require_once( ENANO_ROOT . '/includes/constants.php' ); |
20 require_once( ENANO_ROOT . '/includes/constants.php' ); |
21 |
21 |
22 $ui->show_header(); |
22 $ui->show_header(); |
23 ?> |
23 ?> |
24 <h3>Enano is ready to install.</h3> |
24 <h3><?php echo $lang->get('confirm_title'); ?></h3> |
25 <p>Almost there! You've entered all the information we need for now. Click Continue to install the Enano database.</p> |
25 <p><?php echo $lang->get('confirm_body'); ?></p> |
26 <p style="font-size: smaller;"><b>A note on AES encryption:</b> |
26 <p style="font-size: smaller;"><b><?php echo $lang->get('confirm_info_aes_title'); ?></b> |
27 Enano is currently configured to use <?php echo AES_BITS; ?>-bit AES encryption. While the default value of 192 bits is perfectly acceptable for most sites, those in need of extreme security will want to change this value to 256 bits (the maximum available strength). If you need to change the cipher strength, please edit the file includes/constants.php and then <u>restart</u> this installation. Do not click Continue below until you redo the installation process up until this point, or you will experience severe problems with logging into your site. |
27 <?php echo $lang->get('confirm_info_aes_body', array('aes_bits' => AES_BITS)); ?> |
28 </p> |
28 </p> |
29 <form action="install.php?stage=install" method="post" name="install_login" onsubmit="return ( verify() && submit_encrypt() );"><?php |
29 <form action="install.php?stage=install" method="post" name="install_login" onsubmit="return ( verify() && submit_encrypt() );"><?php |
30 foreach ( $_POST as $key => &$value ) |
30 foreach ( $_POST as $key => &$value ) |
31 { |
31 { |
32 if ( !preg_match('/^[a-z0-9_]+$/', $key) ) |
32 if ( !preg_match('/^[a-z0-9_]+$/', $key) ) |
37 echo "\n <input type=\"hidden\" name=\"$key\" value=\"$value_clean\" />"; |
37 echo "\n <input type=\"hidden\" name=\"$key\" value=\"$value_clean\" />"; |
38 } |
38 } |
39 ?> |
39 ?> |
40 |
40 |
41 <div style="text-align: center;"> |
41 <div style="text-align: center;"> |
42 <input type="submit" name="_cont" value="<?= $lang->get('meta_btn_continue'); ?>" /> |
42 <input type="submit" name="_cont" value="<?= $lang->get('confirm_btn_install_enano'); ?>" /> |
43 </div> |
43 </div> |
44 </form> |
44 </form> |