-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathforms-horizontal.html
More file actions
75 lines (61 loc) · 2.75 KB
/
forms-horizontal.html
File metadata and controls
75 lines (61 loc) · 2.75 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
<!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/style2.css">
</head>
<body>
<div class="container">
<form>
<div class="form-group row">
<label for="email" class="col-sm-2 col-form-label">E-mail</label>
<div class="col-sm-10">
<input type="email" id="email" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="password" class="col-sm-2 col-form-label">Senha</label>
<div class="col-sm-10">
<input type="password" id="password" class="form-control">
</div>
</div>
<fieldset class="form-group">
<div class="row">
<legend class="col-sm-2 col-form-label">Opções</legend>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="option" id="option1" value="option1" checked>
<label class="form-check-label" for="option1">
Opção 1
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="option" id="option2" value="option2">
<label class="form-check-label" for="option2">
Opção 2
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="option" id="option3" value="option3" disabled>
<label class="form-check-label" for="option3">
Opção 3
</label>
</div>
</div>
</div>
</fieldset>
<div class="form-group row">
<div class="offset-sm-2 col-sm-10">
<button type="submit" class="btn btn-primary">Entrar</button>
</div>
</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>