-
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.
- Loading branch information
0 parents
commit cedcc7e
Showing
11 changed files
with
1,150 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html PUBLIC> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="charset=UTF-8"> | ||
<title>Cadastrar Cliente</title> | ||
<link rel="stylesheet" type="text/css" href="css/form.css"> | ||
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script> | ||
<script type="text/javascript" src="js/jquery.maskedinput.js"></script> | ||
<script type="text/javascript" src="js/validacao.js"></script> | ||
</head> | ||
<body> | ||
<header> | ||
</header> | ||
<div class="container"> | ||
<form action="envia.php" method="post" name="formulario" onSubmit="return valida();"> | ||
<h5>Cadastrar Cliente</h5> | ||
<div class="form-group"> | ||
<div class="org"> | ||
<label for="nome" class="rotulo"> | ||
<h2>Nome:</h2> | ||
</label> | ||
<input type="text" name="nome" class="tamanho" placeholder="Nome do cliente" onkeyup="mascaraLetra(this);"> | ||
</div> | ||
<div class="org"> | ||
<label for="endereco" class="rotulo"> | ||
<h2>Endereço:</h2> | ||
</label> | ||
<input type="text" name="endereco" class="tamanho" placeholder="Endereço do cliente" onkeyup="mascaraLetra(this);"> | ||
</div> | ||
<div class="org"> | ||
<label for="complemento" class="rotulo"><h2>Complemento:</h2></label> | ||
<input type="text" name="complemento" class="tamanho2" placeholder="Complemento do cliente"/> | ||
<label for = "cpf" class="rotulo2"> <h2>CPF:</h2></label> | ||
<input type="text" name="cpf" class="tamanho2" placeholder="CPF"/> | ||
</div> | ||
<div class="org"> | ||
<label for="datanasc" class="rotulo"><h2>Data de Nascimento</h2></label> | ||
<input type="date" name="datanasc" class="tamanho3" placeholder="xx/xx/xx" maxlength="8"/> | ||
<label for="telefone1" class="rotulo2"><h2>Telefone: </h2></label> | ||
<input type="text" name="telefone1" class="tamanho3" placeholder="(xx)xxxx-xxxx" maxlength="14" onkeyup="mascaraTel(this);"/> | ||
<label for="telefone2" class="rotulo2"><h2>Telefone 2: </h2></label> | ||
<input type="text" name="telefone2" class="tamanho3" placeholder="(xx) xxxx-xxxx" maxlength="14" onkeyup="mascaraTel(this);"/> | ||
</div> | ||
<div class="org"> | ||
<label for="email1" class="rotulo"><h2>E-mail 1: </h2></label> | ||
<input type="text" name="email1" class="tamanho2" placeholder="E-mail do cliente"/> | ||
<label for="email2" class="rotulo2"><h2>E-mail 2: </h2></label> | ||
<input type="text" name="email2" class="tamanho2" placeholder="E-mail do cliente"/> | ||
</div> | ||
</div> | ||
<input type="submit" onclick="return validaRadio();"> | ||
|
||
</form> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html PUBLIC> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="charset=UTF-8"> | ||
<title>Cadastrar Compra</title> | ||
<link rel="stylesheet" type="text/css" href="css/form.css"> | ||
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script> | ||
<script type="text/javascript" src="js/jquery.maskedinput.js"></script> | ||
<script type="text/javascript" src="js/validacao.js"></script> | ||
</head> | ||
<body> | ||
<header> | ||
</header> | ||
<div class="container"> | ||
<form action="envia.php" method="post" name="formulario" onSubmit="return valida();"> | ||
<h5>Cadastrar Compra</h5> | ||
<div class="form-group"> | ||
<div class="org"> | ||
<label for="fornecedorCompra" class="rotulo"> | ||
<h2>Fornecedor:</h2> | ||
</label> | ||
<select name="fornecedorCompra" class="tamanho"> | ||
</select> | ||
</div> | ||
<div class="org"> | ||
<label for="produtoCompra" class="rotulo"> | ||
<h2>Produto:</h2> | ||
</label> | ||
<select name="produtoCompra" class="tamanho"> | ||
</select> | ||
</div> | ||
<div class="org"> | ||
<label for = "qtdCompra" class="rotulo"> <h2>Quantidade:</h2></label> | ||
<input type="text" name="qtdCompra" class="tamanho3" placeholder="Qtd produto"/> | ||
<label for = "valorCompra" class="rotulo"> <h2>Valor total:</h2></label> | ||
<input type="text" name="qtdProduto" class="tamanho3" placeholder="Valor total da compra"/> | ||
<label for = "dataCompra" class="rotulo2"> <h2>Data:</h2></label> | ||
<input type="date" name="qdataProduto" style="width:130px;" placeholder="xx/xx/xx"/> | ||
|
||
</div> | ||
</div> | ||
<input type="submit" onclick="return validaRadio();"> | ||
|
||
</form> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html PUBLIC> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="charset=UTF-8"> | ||
<title>Cadastrar Fornecedor</title> | ||
<link rel="stylesheet" type="text/css" href="css/form.css"> | ||
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script> | ||
<script type="text/javascript" src="js/jquery.maskedinput.js"></script> | ||
<script type="text/javascript" src="js/validacao.js"></script> | ||
</head> | ||
<body> | ||
<header> | ||
</header> | ||
<div class="container"> | ||
<form action="envia.php" method="post" name="formulario" onSubmit="return valida();"> | ||
<h5>Cadastrar Fornecedor</h5> | ||
<div class="form-group"> | ||
<div class="org"> | ||
<label for="nomeFornecedor" class="rotulo"> | ||
<h2>Nome:</h2> | ||
</label> | ||
<input type="text" name="nomeFornecedor" class="tamanho" placeholder="Nome da empresa fornecedora" onkeyup="mascaraLetra(this);"> | ||
</div> | ||
<div class="org"> | ||
<label for="nomecontatoFornecedor" class="rotulo"> | ||
<h2>Nome contato:</h2> | ||
</label> | ||
<input type="text" name="nomecontatoFornecedor" class="tamanho" placeholder="Nome do funcionário para contato" onkeyup="mascaraLetra(this);"> | ||
</div> | ||
<div class="org"> | ||
<label for="enderecoFornecedor" class="rotulo"> | ||
<h2>Endereço</h2> | ||
</label> | ||
<input type="text" name="enderecoFornecedor" class="tamanho" placeholder="Endereço da empresa fornecedora" onkeyup="mascaraLetra(this);"> | ||
</div> | ||
<div class="org"> | ||
<label for="complementoFornecedor" class="rotulo"><h2>Complemento:</h2></label> | ||
<input type="text" name="complementoFornecedor" class="tamanho2" placeholder="Complemento do cliente"/> | ||
<label for = "cnpjFornecedor" class="rotulo2"> <h2>CNPJ:</h2></label> | ||
<input type="text" name="cnpjFornecedor" class="tamanho2" placeholder="CNPJ empresa fornecedora"/> | ||
</div> | ||
<div class="org"> | ||
<label for="telefoneFornecedor" class="rotulo"><h2>Telefone: </h2></label> | ||
<input type="text" name="telefoneFornecedor" class="tamanho2" placeholder="(xx)xxxx-xxxx" maxlength="14" onkeyup="mascaraTel(this);"/> | ||
<label for="emailFornecedor" class="rotulo2"><h2>E-mail: </h2></label> | ||
<input type="text" name="emailFornecedor" class="tamanho2" placeholder="E-mail do cliente"/> | ||
</div> | ||
</div> | ||
<input type="submit" onclick="return validaRadio();"> | ||
|
||
</form> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html PUBLIC> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="charset=UTF-8"> | ||
<title>Cadastrar Produto</title> | ||
<link rel="stylesheet" type="text/css" href="css/form.css"> | ||
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script> | ||
<script type="text/javascript" src="js/jquery.maskedinput.js"></script> | ||
<script type="text/javascript" src="js/validacao.js"></script> | ||
</head> | ||
<body> | ||
<header> | ||
</header> | ||
<div class="container"> | ||
<form action="envia.php" method="post" name="formulario" onSubmit="return valida();"> | ||
<h5>Cadastrar Produto</h5> | ||
<div class="form-group"> | ||
<div class="org"> | ||
<label for="fornecedorProduto" class="rotulo"> | ||
<h2>Fornecedor:</h2> | ||
</label> | ||
<select name="fornecedorProduto" class="tamanho"> | ||
</select> | ||
</div> | ||
<div class="org"> | ||
<label for="produtoProduto" class="rotulo"><h2>Produto:</h2></label> | ||
<input type="text" name="produtoProduto" style="width:290px;" placeholder="Nome do produto"/> | ||
<label for = "qtdProduto" class="rotulo2"> <h2>Quantidade:</h2></label> | ||
<input type="text" name="qtdProduto" style="width:110px; margin-left:20px;"placeholder="Qtd produto"/> | ||
<label for = "precoProduto" class="rotulo2"> <h2>Preço:</h2></label> | ||
<input type="text" name="precoProduto" style="width:110px; margin-left:-20px;"placeholder="Preço unidade"/> | ||
</div> | ||
</div> | ||
<input type="submit" onclick="return validaRadio();"> | ||
|
||
</form> | ||
</body> | ||
</html> |
Oops, something went wrong.