-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathforms.html
More file actions
92 lines (69 loc) · 3.03 KB
/
forms.html
File metadata and controls
92 lines (69 loc) · 3.03 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap Hcode</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<form>
<label for="email">E-mail</label>
<input type="email" name="email" id="email" placeholder="name@domain.com">
<label for="password">Senha</label>
<input type="password" name="password" id="password" placeholder="Senha">
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
<hr>
<form>
<div class="form-group">
<label for="email">E-mail</label>
<input type="email" name="email" id="email" placeholder="name@domain.com" class="form-control">
</div>
<div class="form-group">
<label for="password">Senha</label>
<input type="password" name="password" id="password" placeholder="Senha" class="form-control">
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
<hr>
<form>
<div class="form-group">
<label for="name">Nome</label>
<input type="text" name="name" id="name" class="form-control">
</div>
<div class="form-group">
<label for="satate">Estado</label>
<select name="state" id="state" class="form-control">
<option value="SP">São Paulo</option>
<option value="RJ">Rio de Janeiro</option>
<option value="MG">Minas Gerais</option>
<option value="PR">Paraná</option>
</select>
</div>
<div class="form-group">
<label for="satate">Estado</label>
<select name="state" id="state" class="form-control" multiple>
<option value="SP">São Paulo</option>
<option value="RJ">Rio de Janeiro</option>
<option value="MG">Minas Gerais</option>
<option value="PR">Paraná</option>
</select>
</div>
<div class="form-group">
<label for="message">Mansagem</label>
<textarea name="message" id="message" cols="30" rows="10" class="form-control"></textarea>
</div>
<div class="form-group">
<label for="upload">Arquivo</label>
<input type="file" name="upload" id="upload" class="form-control-file">
</div>
</form>
</div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>