Skip to content

Commit

Permalink
Terminando o cadastro com bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
orionwinter committed Oct 20, 2014
1 parent 1e9a2a2 commit 5211afb
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
41 changes: 41 additions & 0 deletions estatica-bootstrap/cadastro.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Cadastre-se</title>

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="panel panel-primary">
<div class="panel-heading">
<h3> Formulário para cadastramento:</h3>
</div>
<div class="panel-body">
<form action="obrigado.html">
<div class="input-group">
<span class="input-group-addon">Nome </span>
<input type="text" class="form-control" placeholder="Digite seu nome completo"> <br/>
</div>

<div class="input-group">
<span class="input-group-addon">Matrícula </span>
<input type="number" class="form-control" placeholder="Digite sua matrícula"> <br/>
</div>

<div class="input-group">
<span class="input-group-addon">Data de Nascimento </span>
<input type="date" data-provide="datepicker" name="aniversario"> <br/>
</div>

<button class="btn btn-success" type="submit"> Cadastre-se</button>
</form>
</div>
</div>
</div>


</body>
</html>
2 changes: 0 additions & 2 deletions estatica-css/cadastro.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ <h3> Formulário para cadastramento:</h3>
Nome: <input type="text" name="nome"> <br/>
Matrícula: <input type="number" name="matricula"> <br/>
Data de Nascimento: <input type="date" name="aniversario"> <br/>
Sexo: <input type="radio" name="sexo" value="masculino"> Masculino
<input type="radio" name="sexo" value="Feminino"> Feminino <br/>

<button type="submit"> Cadastre-se</button>
</form>
Expand Down
2 changes: 0 additions & 2 deletions estatica-simples/cadastro.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ <h3> Formulário para cadastramento:</h3>
Nome: <input type="text" name="nome"> <br/>
Matrícula: <input type="number" name="matricula"> <br/>
Data de Nascimento: <input type="date" name="aniversario"> <br/>
Sexo: <input type="radio" name="sexo" value="masculino"> Masculino
<input type="radio" name="sexo" value="feminino"> Feminino <br/>

<button type="submit"> Cadastre-se</button>
</form>
Expand Down

0 comments on commit 5211afb

Please sign in to comment.