<form method="post" class="content"> <div class="title"><?php echo $this->lng['install_progress']; ?> - <?php echo $this->lng['step_2']; ?></div> <div class="desc"><?php echo $this->lng['s2_desc1']; ?></div> <div class="table"> <div class="table-row"> <div class="table-cell"><?php echo $this->lng['adm_login']; ?></div> <div class="table-cell"> <input type="text" name="login" value="<?php echo @$_SESSION['f_login']; ?>" placeholder="<?php echo $this->lng['adm_login']; ?>"> </div> </div> <div class="table-row"> <div class="table-cell"><?php echo $this->lng['adm_pass']; ?></div> <div class="table-cell"> <input type="password" name="password" value="<?php echo @$_SESSION['f_adm_pass']; ?>" placeholder="<?php echo $this->lng['adm_pass']; ?>"> </div> </div> <div class="table-row"> <div class="table-cell"><?php echo $this->lng['adm_repass']; ?></div> <div class="table-cell"> <input type="password" name="repassword" value="<?php echo @$_SESSION['f_repass']; ?>" placeholder="<?php echo $this->lng['adm_repass']; ?>"> </div> </div> <div class="table-row"> <div class="table-cell"><?php echo $this->lng['encrypt_method']; ?></div> <div class="table-cell"> <select name="method"> <?php echo $data['METHODS']; ?> </select> </div> </div> <div class="table-row"> <div class="table-cell"><?php echo $this->lng['adm_mail']; ?></div> <div class="table-cell"> <input type="text" name="email" value="<?php echo @$_SESSION['f_email']; ?>" placeholder="<?php echo $this->lng['adm_mail']; ?>"> </div> </div> <div class="table-row"> <div class="table-cell"><a href="<?php echo URL_INSTALL; ?>" class="btn"><?php echo $this->lng['update']; ?></a></div> <div class="table-cell"> <a href="<?php echo URL_INSTALL; ?>?do=reinstall" class="btn"><?php echo $this->lng['reinstall']; ?></a> <button type="submit" class="btn"><?php echo $this->lng['next']; ?></button> </div> </div> </div> </form>