-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
48 lines (47 loc) · 1.82 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Teste Uol host</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<header>
<div class="bg-logo">
<div class="container">
<div class="row">
<div class="col-md-12">
<a href="#"><img src="assets/image/logo-uol.png" alt="Uol Host"></a>
</div>
</div>
</div><!--/container-->
</div><!--/bg-logo-->
</header><!--/header-->
<section>
<div class="container">
<h3>Painel de clientes</h3>
<div class="row">
<div class="col-md-12">
<span>
<h4>Clientes</h4>
<button type="button" class="btn">Novo cliente</button>
</span>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table id="tabela-uol" class="table table-striped table-bordered table-responsive" role="grid" aria-describedby="example_info" width="100%">
</table>
</div>
</div><!--/row-->
</div><!--/container-->
</section><!--/section-->
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="bower_components/datatables.net/js/jquery.dataTables.js"></script>
<script type="text/javascript" src="bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>