Release Index [HOLO] Innovation !

Blabba.

Utente Attivo
Autore del topic
2 Settembre 2011
488
21
Miglior risposta
0
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

20111112120831.png


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:
Riferimento: Index [HOLO] Innovation !

Carina, ma non troppo.
Il bg mi piace molto , anche l'immagine non è male .
Bravo per aver postato.
 
Riferimento: Index [HOLO] Innovation !

Index Molto Innovativa.
Funziona Solo Per Chi ha Il Quick.
Bravo per averla Condivisa Con Noi.​
 
Riferimento: Index [HOLO] Innovation !

Sinceramente non la vedo come index innovativa!
Hai solo modificato l'immagine e il bg!
Comunque bravo per l'impegno
 
Riferimento: Index [HOLO] Innovation !

Ottima index molto innovativa..
Bravo per aver postato..Mi piace l'hotel_view voto 8
 
Riferimento: Index [HOLO] Innovation !

Il cms che ha in uso è mio, l'index l'ha presa da qualche habbo straniero tipo: .es .com ...
Come potete vedere c'è scritto Gammino nei Tag.
Per me questo topic è inutile.
 
Riferimento: Index [HOLO] Innovation !

Potevi Fare Di Meglio -.-
Bg Non Mi Piace Tanto :S
Big Botton Non MI PIACE :emoji_confused:
L'immagine Mi Piace :emoji_smiley:
Voto 5/10 , Comunque Bravo :emoji_slight_smile:
 
Riferimento: Index [HOLO] Innovation !

@Dino Ricci non ha nulla di "Innovativo" e la solita index che usano tutti. la prossima volta lavora di piu sui CSS e cerca delle guide per imparare a usare GIMP / PS . Ciao
 
Riferimento: Index [HOLO] Innovation !

Non è molto innovativa.
Anzi possiamo dire che hai solo cambiato le immagini. :|
La prossima volta rendila veramente "innovativa"

:bye:
 
Riferimento: Index [HOLO] Innovation !

Niente Di Speciale.
Solita Index
Hai Cambiato solo L'immage.
 
Riferimento: Index [HOLO] Innovation !

Abbastanza innovativa, mi piace molto l'immagine dello sfondo voto 8.5/10
 
Riferimento: Index [HOLO] Innovation !

Quando mi saprai dire che è innovativa fammi un fischio :emoji_relieved:
Cioè hai cambiato solamente l'immaggine entra è gratis , e poi solita index :genio:
 
Riferimento: Index [HOLO] Innovation !

Carina, ma credo che dovresti mettere VT al Download, oppure lo togli perchè hai messo il codice!.
 
Riferimento: Index [HOLO] Innovation !

Carina, ma credo che dovresti mettere VT al Download, oppure lo togli perchè hai messo il codice!.

Dato che c'è il codice .php non credo che serva molto il download, e nello stesso tempo il Vt ;)
 
Riferimento: Index [HOLO] Innovation !

Niente di 'innovativo' questa index è quella per le vecchie versioni.
Colori non si abbinano.
 
Riferimento: Index [HOLO] Innovation !

Non è che mi piace tanto... hai cambiato il collegamento della frontpage nella index.php, il bottone reg1.png è uguale, bg carino... la prossima volta impegnati di più e rendila veramente "Innovativa" e lavora sui CSS ;)
Voto 6/10