Ajuda com HTML
4 participantes
Página 1 de 1
Ajuda com HTML
Veja o fundo cinza na imagem:
Gostaria de saber qual código abaixo refere-se ao fundo cinza pra deixar ele transparente.
Ps: minha primeira MSG
- Spoiler:
Gostaria de saber qual código abaixo refere-se ao fundo cinza pra deixar ele transparente.
- Código:
<?php
/* PHP Eclipse Game Centre
Scripted by Stephan J.R. van Schaik (Godlord).
You're free to use this. */
$configuration = 'configuration.php';
$warning = '';
/* Load the configuration */
if (file_exists($configuration)) { // Does the file exist?
if (filesize($configuration) > 0) { // Is there something in the file?
define('configuration', true);
include($configuration);
$configlist = array('title', 'ipaddress', 'hostname', 'prefix', 'suffix');
for ($i = 0; $i < count($configlist); $i++) {
$_CONFIG[$configlist[$i]] = trim($_CONFIG[$configlist[$i]]);
}
if (isset($_CONFIG['title']) && $_CONFIG['title'] != '') {
$title = $_CONFIG['title']; // Set the title from the configuration.
} else {
$title = 'PHP Eclipse Game Centre';
}
if ((isset($_CONFIG['hostname']) && $_CONFIG['hostname'] != '') || (isset($_CONFIG['ipaddress']) && $_CONFIG['ipaddress'] != '')) {
if (isset($_CONFIG['hostname']) && $_CONFIG['hostname'] != '') {
$address = @gethostbyname($_CONFIG['hostname']); // Solve the hostname.
if ($address == $_CONFIG['hostname']) {
$warning = 'The configuration is incomplete.';
}
} else if (isset($_CONFIG['ipaddress']) && $_CONFIG['ipaddress'] != '') {
$address = $_CONFIG['ipaddress']; // Set the IP address from the configuration.
}
} else {
$warning = 'The configuration is incomplete.';
}
if (isset($_CONFIG['port']) && is_numeric($_CONFIG['port'])) {
$port = $_CONFIG['port']; // Set the port from the configuration.
} else {
$warning = 'The configuration is incomplete.';
}
if (isset($_CONFIG['timeout']) && is_numeric($_CONFIG['timeout'])) {
$timeout = $_CONFIG['timeout']; // Set the timeout from the configuration.
} else {
$timeout = 25;
}
set_time_limit($timeout + 5);
if (isset($_CONFIG['prefix']) && $_CONFIG['prefix'] != '') {
$prefix = $_CONFIG['prefix']; // Set the prefix from the configuration.
} else {
$prefix = '';
}
if (isset($_CONFIG['suffix']) && $_CONFIG['suffix'] != '') {
$suffix = $_CONFIG['suffix']; // Set the suffix from the configuration.
} else {
$suffix = '';
}
if (isset($_CONFIG['major']) && is_numeric($_CONFIG['major'])) {
$major = $_CONFIG['major']; // Set the major from the configuration.
} else {
$major = 1;
}
if (isset($_CONFIG['minor']) && is_numeric($_CONFIG['minor'])) {
$minor = $_CONFIG['minor']; // Set the minor from the configuration.
} else {
$minor = 0;
}
} else {
$warning = 'There is no configuration.';
}
} else {
$warning = 'There is no configuration.';
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $title; ?> - Register</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<?php
if ($warning != "") {
echo '<div class="notification">';
echo $warning;
echo '</div>';
echo '</body>';
echo '</html>';
exit();
}
if (!extension_loaded('sockets')) {
echo '<div class="notification">';
echo 'The extension "sockets" isn\'t enabled or can\'t be loaded.';
echo '</div>';
echo '</body>';
echo '</html>';
exit();
}
if (isset($_POST['submit'])) { // Check if they clicked on the submit button.
$notificated = false;
if (!$notificated && (!isset($_POST['username']) || $_POST['username'] == "")) {
echo '<div class="notification">';
echo 'Every text box must be filled in!';
echo '</div>';
$notificated = true;
}
if (!$notificated && (!isset($_POST['password']) || $_POST['password'] == "")) {
echo '<div class="notification">';
echo 'Every text box must be filled in!';
echo '</div>';
$notificated = true;
}
if (!$notificated && (!isset($_POST['password_check']) || $_POST['password_check'] == "")) {
echo '<div class="notification">';
echo 'Every text box must be filled in!';
echo '</div>';
$notificated = true;
}
if (!$notificated && (!isset($_POST['email']) || $_POST['email'] == "")) {
echo '<div class="notification">';
echo 'Every text box must be filled in!';
echo '</div>';
$notificated = true;
}
if (!$notificated && (!isset($_POST['email_check']) || $_POST['email_check'] == "")) {
echo '<div class="notification">';
echo 'Every text box must be filled in!';
echo '</div>';
$notificated = true;
}
$username = $_POST['username'];
$password = $_POST['password'];
$password_check = $_POST['password_check'];
$email = $_POST['email'];
$email_check = $_POST['email_check'];
if (!$notificated && $password != $password_check) {
echo '<div class="notification">';
echo 'The passwords aren\'t equal.';
echo '</div>';
$notificated = true;
}
if (!$notificated && $email != $email_check) {
echo '<div class="notification">';
echo 'The e-mail addresses aren\'t equal.';
echo '</div>';
$notificated = true;
}
$SEP_CHAR = chr(0); // Set the seperation character.
$END_CHAR = chr(237); // Set the end character.
$socket = false;
if (!$notificated) {
$socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP); // Create a new TCP socket.
if (!$socket) {
@socket_close($socket);
echo '<div class="notification">';
echo 'The socket couldn\'t be created.<br />';
$error = @socket_last_error($socket);
echo 'Socket Error '.$error.': '.@socket_strerror($err);
echo '</div>';
$notificated = true;
}
}
$result = true;
if (!$notificated) {
if (!@socket_set_nonblock($socket) && !$notificated) { // Try to set the socket to non-blocking mode.
@socket_close($socket);
echo '<div class="notification">';
echo 'The socket couldn\'t be set to non-blocking mode.';
$error = @socket_last_error($socket);
echo 'Socket Error '.$error.': '.@socket_strerror($err);
echo '</div>';
$notificated = true;
}
}
$time = time(); // Get the current time.
if (!$notificated) {
$exit = false;
while (!@socket_connect($socket, $address, $port) && !$exit) { // Attempt to connect.
$error = @socket_last_error($socket);
if ($error == 115 || $error == 114 || $error == 10035 || $error == 111) {
if ((time() - $time) >= $timeout) { // Timeout?
@socket_close($socket);
$result = false;
$exit = true;
}
sleep(1);
continue;
} else if ($error == 10056) {
$result = true;
$exit = true;
} else {
echo '<div class="notification">';
echo 'The socket couldn\'t connect.<br />';
echo 'Socket error '.$error.': '.@socket_strerror($error);
echo '</div>';
echo '</body>';
echo '</html>';
exit();
}
}
if ($result) { // We're connected.
if (!@socket_set_block($socket)) { // Try to set the socket to blocking mode.
@socket_close($socket);
echo '<div class="notification">';
echo 'The socket couldn\'t be set to blocking mode.<br />';
$error = @socket_last_error($socket);
echo 'Socket error '.$error.': '.@socket_strerror($err);
echo '</div>';
$notificated = true;
}
if ($prefix == "EE" && $major == 2 && $minor == 7) {
$input = 'newaccount'.$SEP_CHAR.$username.$SEP_CHAR.$password.$SEP_CHAR.$email.$SEP_CHAR.$END_CHAR;
} else if ($prefix == "EE") {
$input = 'newaccountied'.$SEP_CHAR.$username.$SEP_CHAR.$password.$SEP_CHAR.$email.$SEP_CHAR.$END_CHAR;
} else if (!$notificated) {
@socket_close($socket);
echo '<div class="notification">';
echo 'Your Eclipse version is not supported.';
echo '</div>';
$notificated = true;
}
if (!$notificated) {
$result = socket_write($socket, $input, strlen($input)); // Send the data to the server.
if (!$result) {
@socket_close($socket);
echo '<div class="notification">';
echo 'The socket couldn\'t send data.<br />';
$error = @socket_last_error($socket);
echo 'Socket error '.$error.': '.@socket_strerror($err);
echo '</div>';
$notificated = true;
}
}
if (!$notificated) {
$output = socket_read($socket, 8192, PHP_BINARY_READ); // Read 8192 bytes of the socket and put it into output.
if (!$output) {
@socket_close($socket);
echo '<div class="notification">';
echo 'The socket couldn\'t receive data.<br />';
$error = @socket_last_error($socket);
echo 'Socket error '.$error.': '.@socket_strerror($err);
echo '</div>';
$notificated = true;
}
@socket_close($socket);
if (!$notificated) {
$data = explode($SEP_CHAR, $output);
$data[0] = strtolower($data[0]);
if ($data[0] == 'plainmsg') {
if ($data[1] == 'Your account has been created!') {
echo '<div class="notification">';
echo 'Your account called "'.$username.'" has been created!<br />You can now log in on the game client! Enjoy the game!';
echo '</div>';
} else if ($data[1] == 'Your username must be at least three characters in length.') {
echo '<div class="notification">';
echo 'Your username is too short, it must be at least three characters long.';
echo '</div>';
} else if ($data[1] == 'Your password must be at least three characters in length.') {
echo '<div class="notification">';
echo 'Your password is too short, it must be at least three characters long.';
echo '</div>';
} else if ($data[1] == 'Your email address cannot be blank.') {
echo '<div class="notification">';
echo 'You didn\'t specify an e-mail address.';
echo '</div>';
} else if ($data[1] == 'Your username must consist of alpha-numeric characters!') {
echo '<div class="notification">';
echo 'Your username must consist of alpha-numeric characters.';
echo '</div>';
} else if ($data[1] == 'Sorry, that account name is already taken!') {
echo '<div class="notification">';
echo 'Sorry, but that account is already in use.';
echo '</div>';
} else {
echo '<div class="notification">';
echo 'An unknown message has been received. Please report this!';
echo '</div>';
}
$notification = true;
} else {
echo '<div class="notification">';
echo 'An unknown package has been sent. Please report this!';
echo '</div>';
$notification = true;
}
}
}
} else { // We couldn't connect.
echo '<div class="notification">';
echo 'The server is offline or is not available, try again later.';
echo '</div>';
$notification = true;
}
}
}
echo '<div style="display: block; height: 7px;"></div>';
?>
<form action="" method="post">
<div class="content">
<div style="display: block;">
<div class="formleft">Username:</div>
<div class="formright"><input class="textbox" type="text" id="username" name="username" size="30" /></div>
</div><br /><br />
<div style="display: block;">
<div class="formleft">Password:</div>
<div class="formright"><input class="textbox" type="password" id="password" name="password" size="30" /></div>
</div><br /><br />
<div style="display: block;">
<div class="formleft">Confirm password:</div>
<div class="formright"><input class="textbox" type="password" id="password_check" name="password_check" size="30" /></div>
</div><br /><br />
<div style="display: block;">
<div class="formleft">E-mail address:</div>
<div class="formright"><input class="textbox" type="text" id="email" name="email" size="30" /></div>
</div><br /><br />
<div style="display: block;">
<div class="formleft">Confirm e-mail address:</div>
<div class="formright"><input class="textbox" type="text" id="email_check" name="email_check" size="30" /></div>
</div><br /><br />
<div style="width: 100%; display: block;">
<input class="createbutton" type="submit" id="submit" name="submit" value="Create Account" />
</div>
</div>
</form>
</body>
</html>
Ps: minha primeira MSG
Re: Ajuda com HTML
Cara, o negócio aí ta tenso, nunca tinha visto alguém usar php e html desse jeito.. (até porque eu sou novo nisso shuahsau)
se vc puder colocar a parte de CSS fica mais fácil. Mas tipo, quando eu fico perdido no meio das divs eu fico marcando elas com números e olhando no css .-.
se vc puder colocar a parte de CSS fica mais fácil. Mas tipo, quando eu fico perdido no meio das divs eu fico marcando elas com números e olhando no css .-.
MadaraOwner- Membro Sênior
- Mensagens : 276
Re: Ajuda com HTML
Cara encontra a div do quadro e coloca
opacity: 0;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 0);
filter: alpha(opacity = 0);
> funciona em todos os navegadores , até IE , é uma propriedade do css3 , pra aumentar a opacity é só alterar o '0' pra valor que você quer,
Uma dica use esse site css3.me la da pra simular/criar/testar essas coisas e ainda gera um código fonte.
opacity: 0;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 0);
filter: alpha(opacity = 0);
> funciona em todos os navegadores , até IE , é uma propriedade do css3 , pra aumentar a opacity é só alterar o '0' pra valor que você quer,
Uma dica use esse site css3.me la da pra simular/criar/testar essas coisas e ainda gera um código fonte.
jpkadilo- Membro
- Mensagens : 167
Tópicos semelhantes
» Aprenda HTML - Mais tags HTML
» Aprenda HTML - Oque é HTML ?
» Aprenda HTML - Atributos
» Aprenda HTML - Links...
» Criando um WebSite em HTML
» Aprenda HTML - Oque é HTML ?
» Aprenda HTML - Atributos
» Aprenda HTML - Links...
» Criando um WebSite em HTML
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
Dom 08 Abr 2018, 18:40 por JorgeZinhoo002
» Ojkjeeeee
Seg 10 Out 2016, 23:19 por Frozen
» Naruto Great Ninja Batle
Dom 09 Out 2016, 14:29 por GuiinhoLP
» Recrutamento de um Designer para jogo de CDZ.
Sex 23 Set 2016, 18:37 por newbie123
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:11 por Eduardo
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:11 por Eduardo
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:09 por Eduardo
» Projeto Dbz
Qua 31 Ago 2016, 23:46 por 157
» Avaliação - Sprites Naruto
Qua 31 Ago 2016, 17:09 por 157
» [Sprites] DBZ (Plix)
Qua 31 Ago 2016, 14:13 por 157
» Super Pack - Bleach V.2
Qua 31 Ago 2016, 13:02 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:04 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:03 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:02 por 157
» [Pedido] Contador de resets na FrmMain
Sáb 13 Ago 2016, 17:45 por killers97
» [Recrutamento]
Qua 10 Ago 2016, 23:09 por Monsters
» Ajuda erro no Cliente e Servidor do EEB 2.6!
Qua 20 Jul 2016, 19:53 por Binholx
» Como criar tilesets para Eclipse Origins 3.0 (POKÉMON)
Qua 29 Jun 2016, 19:46 por Sir Aaron
» Recursos Pokemons
Qua 29 Jun 2016, 19:34 por Sir Aaron
» erro frm flash
Qua 25 maio 2016, 13:51 por vava123
» Pedido - Pack de star wars
Qui 19 maio 2016, 05:06 por edsonpet
» [Ajuda] Sobre como por o servidor on por ip fixo
Ter 17 maio 2016, 16:14 por vava123
» Illusion Dimension - O Misterio do ID: BETA TESTE ONLINE
Sex 06 maio 2016, 20:02 por LksFlorencio
» [NSME] Naruto Shinobi Maker Engine
Qua 23 Mar 2016, 15:11 por luana1457
» Script /base,/casa Igual DBZ Forces
Dom 21 Fev 2016, 07:34 por JorgeZinhoo002
» [Pedido]Colar Tsunade item sprite eclipse origin
Qui 21 Jan 2016, 07:38 por lawllietbr
» [Pedido] Elysium
Sáb 19 Dez 2015, 11:31 por luana1457
» Naruto - Recruta
Ter 15 Dez 2015, 18:40 por Uchiha ~
» [Avaliação] - Kirito from Sword Art Online; Red and Pikachu from Pokemon.
Qua 25 Nov 2015, 13:43 por Thanakii
» [Avaliação] - Kenpachi Zaraki from Bleach; Libra Shiryu From Saint Seiya.
Qua 25 Nov 2015, 12:55 por Thanakii
» Demonstração de Sprites (Á VENDA!)
Qua 25 Nov 2015, 12:40 por Thanakii
» [Sistema de Reset]Para Eclipse .
Ter 24 Nov 2015, 16:51 por VithorUchi
» Cada Guild Nascer em Certo Mapa
Qui 12 Nov 2015, 06:13 por fabiofeijó_HIT
» Dragon Ball z Fusion A Grande Volta
Qui 29 Out 2015, 15:17 por fabiofeijó_HIT
» Ajuda com Ip fixo
Seg 26 Out 2015, 16:07 por GalaxyHells15
» Como Fazer um GUI no Eclipse Origins
Dom 18 Out 2015, 22:10 por Jeanleee
» Shisui Susanoo
Dom 18 Out 2015, 20:23 por Jeanleee
» Fantasy Art Online
Dom 18 Out 2015, 16:41 por daviih123
» Ajuda !!
Seg 05 Out 2015, 12:13 por andersonzika
» como passar o usuário e senha para o MainMenu?
Seg 28 Set 2015, 22:03 por Bëzerk
» Ru time ero 13 Type mismatch
Seg 28 Set 2015, 09:08 por andredarle
» Jarvis 1.3 Download
Qua 23 Set 2015, 18:42 por soares125
» [Avaliação/Disponibilização]Árvore 64x64
Qua 23 Set 2015, 15:15 por Over~
» Mlk's Zikas Signatures
Ter 22 Set 2015, 21:15 por Aikawa Reborn'
» Pedido de Sistemas
Dom 20 Set 2015, 18:05 por cleyton_05
» [AjudaEEB]Gerador de EXP
Qua 16 Set 2015, 14:04 por Over~
» [Avaliar] Base, Humano e Goblin.
Seg 14 Set 2015, 22:51 por .iBlaz3.
» Fabrica do Tio Cronos!
Dom 13 Set 2015, 21:31 por [ADM]Cronos
» [PixelArt] Minion - Meu malvado favorito
Dom 13 Set 2015, 12:51 por [ADM]Cronos
» [Avaliar] Goku Dragon Ball Z
Qua 05 Ago 2015, 21:36 por Setrux