-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (155 loc) · 5.61 KB
/
index.html
File metadata and controls
170 lines (155 loc) · 5.61 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<title> </title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- Header -->
<div class="container">
<div class="row justify-content-center pt-5">
<img src="./images/indexlogo.png" alt="" />
<h1 class="display-4 pt-5">- Stonks</h1>
</div>
</div>
<!-- Spreadsheet -->
<div class="container mb-3 mt-3 tabelaAcoes">
<table
id="tableSpreadSheet"
class="table table-striped table-bordered dataTable"
style="width: 100%;"
role="grid"
>
<thead class="columnHeader">
<tr class="column">
<th class="columnCSS baseIndex" id="A0" data-children-count="1">
</th>
<th class="columnCSS baseIndex" id="B0" data-children-count="1">
</th>
<th class="columnCSS baseIndex" id="C0" data-children-count="1">
</th>
<th class="columnCSS baseIndex" id="D0" data-children-count="1">
DISTRIBUIÇAO
</th>
<th class="columnCSS baseIndex" id="E0" data-children-count="1">
INVESTIDO
</th>
</tr>
</thead>
<tbody class="spreadSheet"></tbody>
</table>
<button type="button" name="" id="" data-toggle="modal" data-target="#insereAcaoModal" class="btn btn-primary" btn-lg btn-block">Nova Açao</button>
</div>
<!-- Modal -->
<div class="modal fade" id="insereAcaoModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<!-- Form -->
<div class="container">
<div class="card p-5 mt-3">
<h3>Nova Açao</h3>
<form class="row inputAcaoForm">
<div class="form-group col-6">
<label for="nome">Nome</label>
<input
type="text"
name=""
id="nomeAcao"
class="form-control text-left column-title"
placeholder="Nome da Açao"
aria-describedby="helpId"
/>
</div>
<div class="form-group col-6">
<label for="codigo">Código</label>
<input
type="text"
name=""
id="codigoAcao"
class="form-control text-left column-title"
placeholder="Codigo da Açao"
aria-describedby="helpId"
/>
</div>
<div class="form-group col-12">
<label for="Setor">Setor</label>
<input
type="text"
name=""
id="setorAcao"
class="form-control text-left column-title"
placeholder="Setor da Açao"
aria-describedby="helpId"
/>
</div>
<div class="form-group col-12">
<label for="tipo">Tipo</label>
<select class="form-control" name="tipoAcao" id="tipoAcao">
<option>Açao</option>
<option>Fundo Imobiliario</option>
</select>
</div>
</form>
</div>
</div>
</div>
<div class="modal-footer">
<!-- Insere Açao -->
<div class="container">
<div class="row justify-content-end">
<a
name="Create"
id="createColumn"
class="btn btn-success mr-3 "
href="#"
role="button"
>Inserir Açao</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal Compra Acoes-->
<div id="compraAcaoModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
</div>
</div>
</div>
</div>
<!-- jQuery first, then Bootstrap JS, then App JS -->
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/jquery.dataTables.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.13/js/dataTables.bootstrap4.min.js"></script>
<script type="module" src="./index.js"></script>
</body>
</html>