-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incluído novos campos de dados, alteração no Style da página, incluídas novas opções e novo formato de alert.
- Loading branch information
1 parent
af6f3fa
commit a552609
Showing
3 changed files
with
128 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,21 +9,46 @@ | |
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Retenção</h1> | ||
|
||
<label for="telefone">Telefone:</label> | ||
<input type="text" id="telefone" name="telefone"> | ||
<h1>Agilizador</h1> | ||
|
||
<button onclick="formatarTelefone()">Formatar</button><br><br> | ||
<label for="plano">Planos:</label> | ||
<select id="plano" name="plano"> | ||
<option value="Começar">Começar</option> | ||
<option value="Crescer">Crescer</option> | ||
<option value="Evoluir">Evoluir</option> | ||
<option value="Potencializar">Potencializar</option> | ||
</select> | ||
|
||
<label for="mensagem">Mensagem:</label> | ||
<label for="setor">Time</label> | ||
<select id="setor" name="setor"> | ||
<option value="Financeiro">Financeiro</option> | ||
<option value="Comercial">Comercial</option> | ||
<option value="Suporte">Suporte</option> | ||
<option value="KA">KA</option> | ||
</select> | ||
|
||
<label for="telefone"></label> | ||
<input type="text" placeholder="Telefone: (XX) X XXXX - XXXX" id="telefone" name="telefone"> | ||
<label for="CNPJ"></label> | ||
<input type="text" placeholder="CNPJ: XX.XXX.XXX/000X-XX " id="cnpj" name="cnpj"> | ||
<label for="email"></label> | ||
<input type="text" placeholder="Email: [email protected] " id="email" name="email"> | ||
<label for="ticket"></label> | ||
<input type="text" placeholder="Ticket: www.olist.com/ticket " id="ticket" name="ticket"> | ||
|
||
|
||
|
||
<button onclick="formatarTelefone()">Gerar</button> | ||
|
||
<label for="mensagem"></label> | ||
<textarea id="mensagem" name="mensagem" rows="10" cols="50"></textarea> | ||
|
||
<!-- Botão para copiar o conteúdo --> | ||
<button onclick="copiarMensagem()">Copiar mensagem</button> | ||
<button id="copy" onclick="copiarMensagem()">Copiar</button> | ||
|
||
<!-- Botão para limpar o conteúdo --> | ||
<button onclick="limparCampos()">Limpar campos</button> | ||
<button id="clear" onclick="limparCampos()">Limpar</button> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters