-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (97 loc) · 4.31 KB
/
index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link href="assets/DataTables/datatables.min.css" rel="stylesheet"/>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/jQuery/jquery.js"></script>
<script src="assets/DataTables/datatables.min.js"></script>
<title>Entrada de usinas em operação</title>
</head>
<body>
<main class="container p-4">
<article>
<div class="row">
<h1 class="text-center">
Entrada em operação de usinas
</h1>
</div>
<div class="row">
<div class="col-md-3">
<label class="form-label" for="initial_date">Data inicial</label>
<input id="initial_date" class="form-control" type="date" name="initial_date">
</div>
<div class="col-md-3">
<label class="form-label" for="final_date">Data final</label>
<input id="final_date" class="form-control" type="date" name="final_date">
</div>
<div class="col-md-3 text-center">
<div class="row">
<label
class="form-label mb-3"
data-toggle="tooltip"
data-placement="top"
>
Tipo de operação
</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="checkbox"
name="operation_type"
id="operation_type__comercial"
value="comercial" checked
>
<label class="form-check-label" for="inlineRadio1">Comercial</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="checkbox"
name="operation_type"
id="operation_type__teste"
value="teste"
>
<label class="form-check-label" for="inlineRadio2">Teste</label>
</div>
</div>
<div class="col-md-3">
<button
id="load_table"
class="btn btn-primary mt-4 fill-column"
type="button"
>
Buscar
</button>
</div>
</div>
<div class="row">
<button id="check_dou" class="btn btn-success my-2" type="button" >
Verificar dados no D.O.U
</button>
</div>
</article>
<article>
<table id="table_usinas_operacao" class="table table-bordered" >
<thead>
<tr>
<th>Nome usina</th>
<th>Tipo</th>
<th>Modalidade comercialização</th>
<th>Potência (kW)</th>
<th>Localização</th>
<th>Data liberação teste</th>
<th>Data liberação comercial</th>
</tr>
</thead>
</table>
</article>
</main>
<script type="module" src="js/index.js"></script>
</body>
</html>