Você está na página 1de 1

<!doctype html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Cadastro de Usu&aacute;rios</title> <link rel="stylesheet" href="css.

css" type="text/css" media="screen" /> <script src="jquery.js" type="text/javascript"></script> <!-- No esquea de col ocar --> <script src="app.js" type="text/javascript"></script> <!-- ... e esse tambm -> </head> <body> <form action="novo_usuario.php" method="post" id="cadastro"> <fieldset> <legend>Cadastro</legend> <label for="nome">Nome:</label> <input type="text" name="nome" value="" id="nome" /> <label for="email">Email:</label> <input type="text" name="email" value="" id="email" /> <label for="login">Login:</label> <input type="text" name="login" value="" id="login" /> <label for="senha">Senha:</label> <input type="password" name="senha" value="" id="senha" /> <label for="re-senha">Digite a senha novamente:</label> <input type="password" name="re-senha" value="" id="re-senha" /> <input type="submit" name="cadastrar" value="cadastrar" id="cadastra r" /> <small id="resultado"></small> <small>* todos os campos s&atilde;o obrigatorios</small> </fieldset> </form> </body> </html>

Você também pode gostar