Página principal: mudanças entre as edições
De ForFans
Mais ações
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
<div style="background: linear-gradient(135deg, #2c3e50, #fd7e14); padding: 40px; text-align: center; border-radius: 12px; color: white; margin: 20px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.2);"> | <div style="background: linear-gradient(135deg, #2c3e50, #fd7e14); padding: 40px; text-align: center; border-radius: 12px; color: white; margin: 20px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.2);"> | ||
<h1 style="color: white; border: none; margin-bottom: 10px; font-size: 2.5em;">Comece a sua própria comunidade hoje!</h1> | <h1 style="color: white; border: none; margin-bottom: 10px; font-size: 2.5em; font-weight: bold;">Comece a sua própria comunidade hoje!</h1> | ||
<p style="font-size: 1.2em; margin-bottom: 25px; opacity: 0.9;">Crie uma Wiki grátis sobre jogos, séries, animes ou qualquer assunto que você ame.</p> | <p style="font-size: 1.2em; margin-bottom: 25px; opacity: 0.9;">Crie uma Wiki grátis sobre jogos, séries, animes ou qualquer assunto que você ame.</p> | ||
<div style="max-width: 500px; margin: 0 auto; display: flex; gap: 10px;"> | <div style="max-width: 500px; margin: 0 auto; display: flex; gap: 10px;"> | ||
<input type="text" id="wikiNameInput" placeholder="Ex: minecraft, starwars, dnd..." style="flex: 1; padding: 15px; border: none; border-radius: 6px; font-size: 1.1em; color: #333; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);"> | <input type="text" id="wikiNameInput" placeholder="Ex: minecraft, starwars, dnd..." style="flex: 1; padding: 15px; border: none; border-radius: 6px; font-size: 1.1em; color: #333; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);"> | ||
<button onclick="irParaCriacao()" style="background-color: #ffffff; color: #fd7e14; border: none; padding: 0 25px; font-weight: bold; border-radius: 6px; font-size: 1.1em; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.1);">Começar</button> | <button onclick="irParaCriacao()" style="background-color: #ffffff; color: #fd7e14; border: none; padding: 0 25px; font-weight: bold; border-radius: 6px; font-size: 1.1em; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); height: 50px;">Começar</button> | ||
</div> | </div> | ||
</div> | </div> | ||
| Linha 16: | Linha 16: | ||
return; | return; | ||
} | } | ||
window.location.href = "https://forfans.com.br" + encodeURIComponent(nomeWiki); | window.location.href = "https://forfans.com.br" + encodeURIComponent(nomeWiki); | ||
} | } | ||
</script> | </script> | ||
Edição das 18h07min de 16 de junho de 2026
Comece a sua própria comunidade hoje!
Crie uma Wiki grátis sobre jogos, séries, animes ou qualquer assunto que você ame.
<input type="text" id="wikiNameInput" placeholder="Ex: minecraft, starwars, dnd..." style="flex: 1; padding: 15px; border: none; border-radius: 6px; font-size: 1.1em; color: #333; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);">
<button onclick="irParaCriacao()" style="background-color: #ffffff; color: #fd7e14; border: none; padding: 0 25px; font-weight: bold; border-radius: 6px; font-size: 1.1em; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); height: 50px;">Começar</button>
<script> function irParaCriacao() {
var nomeWiki = document.getElementById('wikiNameInput').value.trim();
if(nomeWiki === "") {
alert("Por favor, digite um nome para a sua wiki!");
return;
}
window.location.href = "https://forfans.com.br" + encodeURIComponent(nomeWiki);
} </script>