-
Notifications
You must be signed in to change notification settings - Fork 0
/
projeto-base.html
71 lines (59 loc) · 1.76 KB
/
projeto-base.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Negociações</title>
<link rel="stylesheet" href="public/css/bootstrap.css" />
<link rel="stylesheet" href="public/css/bootstrap-theme.css" />
</head>
<body>
<h1 class="text-center py-5 bg-primary text-light">Negociações</h1>
<div class="container">
<form class="form container">
<div class="row">
<div class="form-group col">
<label for="data">Data</label>
<input type="text" id="data" class="form-control" required />
</div>
<div class="form-group col">
<label for="quantidade">Quantidade</label>
<input type="number" min="1" step="1" id="quantidade" class="form-control" value="1" required />
</div>
<div class="form-group col">
<label for="valor">Valor</label>
<input id="valor" type="number" class="form-control" min="0.01" step="0.01" value="0.0" required />
</div>
<div class="col-1 d-flex align-items-end justify-content-end">
<button class="btn btn-primary" type="button">Incluir</button>
</div>
</div>
</form>
<div class="my-5">
<table class="table table-hover table-bordered">
<thead class="table-primary">
<tr>
<th>DATA</th>
<th>QUANTIDADE</th>
<th>VALOR</th>
<th>VOLUME</th>
</tr>
</thead>
<tbody>
<tr>
<td>01/03/2023</td>
<td>150</td>
<td>R$ 38,50</td>
<td>R$ 5.775</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3"></td>
<td>R$ 5.775</td>
</tr>
</tfoot>
</table>
</div>
</div>
</body>
</html>