Salve utenti di sciax2 ecco la mia index firmata Live!
innovata 100%
con nuova immagine base della index Xebbo cms ;) italiana 100%
Ecco a voi lo Screen
Ecco a voi il download
Se nn volete scaricare il file puoi copiare il codice direttamente da quà
innovata 100%
con nuova immagine base della index Xebbo cms ;) italiana 100%
Ecco a voi lo Screen
Ecco a voi il download
Perfavore,
Entra
oppure
Registrati
per vedere i Link!
Se nn volete scaricare il file puoi copiare il codice direttamente da quà
<?php
/*===================================================+
|| # HoloCMS - Website and Content Management System
|+===================================================+
|| # Copyright © 2008 Meth0d. All rights reserved.
|| #Perfavore, Entra oppure Registrati per vedere i Link!
|+===================================================+
|| # HoloCMS is provided "as is" and comes without
|| # warrenty of any kind. HoloCMS is free software!
|+===================================================*/
include('core.php');
session_start();
include("locale/".$language."/login.php");
include("locale/".$language."/login.php");
if(!session_is_registered(username)){
if(isset($_POST['username']) && isset($_POST['password'])){
$username = addslashes($_POST['username']);
$sql = mysql_query("SELECT * FROM users WHERE username = '".$username."' LIMIT 1") or die(mysql_error());
$row2s = mysql_fetch_array($sql);
$password = HoloHash($_POST['password'], $row2s[username]);
$remember_me = $_POST['_login_remember_me'];
if(empty($username) || empty($password)){
$login_error = "Perfavore non lasciare spazi bianchi.";
} else {
$sql = mysql_query("SELECT id FROM users WHERE username = '".$username."' AND password = '".$password."' LIMIT 1") or die(mysql_error());
$rows = mysql_num_rows($sql);
if($rows < 1){
$login_error = "Username o Password invalidi";
} else {
$userdata = mysql_fetch_assoc($sql);
$userid = $userdata['id'];
$check = mysql_query("SELECT * FROM bans WHERE value = '".$username."' OR ipaddress = '".$remote_ip."' LIMIT 1") or die(mysql_error());
$is_banned = mysql_num_rows($check);
if($is_banned < 1){
$_SESSION['username'] = $username;
$_SESSION['password'] = $password;
if($remember_me == "true"){
setcookie("remember", "remember", time()+60*60*24*100, "/");
setcookie("rusername", $_SESSION['username'], time()+60*60*24*100, "/");
setcookie("rpassword", sha1("zomq".$_SESSION['password']), time()+60*60*24*100, "/");
}
$sql3 = mysql_query("UPDATE users SET lastvisit = '".$date_full."' WHERE username = '".$username."'") or die(mysql_error());
header("location:security_check.php"); exit;
} else {
$bandata = mysql_fetch_assoc($check);
$reason = $bandata['reason'];
$expire = $bandata['expire'];
if($stamp_now < $stamp_expire){
$login_error = "Sei Stato Bannato! La Ragione Del Ban e \"".$reason."\". Scade Il ".$expire.".";
} else { // ban expired
//mysql_query("DELETE FROM users_bans WHERE userid = '".$userid."' OR ipaddress = '".$remote_ip."' LIMIT 1") or die(mysql_error());
$_SESSION['username'] = $username;
$_SESSION['password'] = $password;
if($remember_me == "true"){
setcookie("remember", "remember", time()+60*60*24*100, "/");
setcookie("rusername", $_SESSION['username'], time()+60*60*24*100, "/");
setcookie("rpassword", sha1("zomq".$_SESSION['password']), time()+60*60*24*100, "/");
}
$sql3 = mysql_query("UPDATE users SET lastvisit = '".$date_full."' WHERE username = '".$username."'") or die(mysql_error());
header("location:security_check.php"); exit;
}
}
}
}
}
if(isset($_GET['error'])){
$errorno = $_GET['error'];
if($errorno == 1){
$login_error = "Invalida Username o Password.";
} elseif($errorno == 2){
$login_error = "Invalida Username o Password.";
} elseif(isset($_GET['ageLimit']) && $_GET['ageLimit'] == "true"){
$login_error = "Sei troppo giovane per Giocare Qui.";
}
}
include("locale/".$language."/login.php");
include('templates/frontpage/subheader.php');
include('templates/frontpage/header.php');
include('bg.php');
?>
<div class="logincontainer">
<?php
if(isset($login_error)){
echo "\n<div class=\"action-error flash-message\">\n <div class=\"rounded\">\n <ul>\n <li>".$login_error."</li>\n </ul>\n </div>\n</div>\n";
}
?>
<div class="cbb loginbox clearfix">
<h2 class="title"><?php echo $locale['login']; ?></h2>
<div class="box-content clearfix" id="login-habblet">
<form action="index.php?do=process_login" method="post" class="login-habblet">
<ul>
<li>
<label for="login-username" class="login-text"><? echo $locale['username']; ?></label>
<input tabindex="1" type="text" class="login-field" name="username" id="login-username" value="" />
</li>
<li>
<label for="login-password" class="login-text"><? echo $locale['password']; ?></label>
<input tabindex="2" type="password" class="login-field" name="password" id="login-password" /> <input type="submit" value="Entra" class="submit" id="login-submit-button"/> <a href="#" id="login-submit-new-button" class="new-button" style="margin-right: 0;display:none"><b style="padding-right: 10px; padding-right: 7px; width: 55px">Entra</b><i></i></a> </li><br><br> </li>
<li id="remember-me" class="no-label">
<input tabindex="4" type="checkbox" name="_login_remember_me" id="login-remember-me" value="true"/>
<label for="login-remember-me">Ricordami</label>
</li>
<li class="no-label">
<a href="forgot.php" id="forgot-password"><span>Ho dimenticato la mia password/ il nome del mio Live</span></a>
</li>
</ul>
</form>
</div>
</div>
<div id="remember-me-notification" class="bottom-bubble" style="display:none;">
<div class="bottom-bubble-t"><div></div></div>
<div class="bottom-bubble-c">
Cliccando qui, deciderai di restare connesso finchè non cliccherai su 'Esci' .
</div>
<div class="bottom-bubble-b"><div></div></div>
</div>
</br>
<script type="text/javascript">
L10N.put("authentication.form.name", "Nome");
L10N.put("authentication.form.password", "Password");
HabboView.add(function() {LoginFormUI.init();});
HabboView.add(function() {RememberMeUI.init("newfrontpage");});
</script>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
<div class="habblet-container "><div id="frontpage-image" style="background-image: url('http://img267.imageshack.us/img267/3672/20111111174650.png')">
<div class="habblet-container "><div id="image3" style="position:absolute; overflow:hidden; top:100px; left:-135px">
<a href="quickregister/start.php"><img src="./web-gallery/v2/images/frontpage/reg3.png"onmouseover="this.src='./web-gallery/v2/images/frontpage/reg4.png'"onmouseout="this.src='./web-gallery/v2/images/frontpage/reg3.png'"></a>
</br>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
<div style="width: 710px; margin: 0 auto"><div class="rounded-container"><div style="background-color: rgb(0, 0, 0); "><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; height: 1px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); "><div style="height: 1px; overflow-x: hidden; overflow-y: hidden; margin-top: 0px; margin-right: 1px; margin-bottom: 0px; margin-left: 1px; background-color: rgb(53, 53, 53); "><div style="height: 1px; overflow-x: hidden; overflow-y: hidden; margin-top: 0px; margin-right: 1px; margin-bottom: 0px; margin-left: 1px; background-color: rgb(61, 61, 61); "></div></div></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; height: 1px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(53, 53, 53); "><div style="height: 1px; overflow-x: hidden; overflow-y: hidden; margin-top: 0px; margin-right: 1px; margin-bottom: 0px; margin-left: 1px; background-color: rgb(61, 61, 61); "></div></div></div><div class="roundedrect rounded-done" id="tag-cloud-slim"> <span class="tags-habbos-like">Tag</span>
<?php include('tagcloud.php'); ?>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</div>
<?php
include('templates/community/footer.php');
} else {
header("location:welcome.php");
}
?>
<script>LiveCms ('Benvenuto in Live cms! by Live')</script>
<br>
<br>
Ultima modifica: