-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap-form.html
33 lines (32 loc) · 1.06 KB
/
bootstrap-form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Curso Completo do Desenvolvedor Web</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Senha</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">Selecione o arquivo</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Examplo de texto de ajuda.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Eu li e eu aceito os termos de uso.
</label>
</div>
<button type="submit" class="btn btn-default">Enviar</button>
</form>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>