-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.29 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>CRM Light</title>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
<link href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css" rel="stylesheet">
<link href="./assets/css/index.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="/assets/css/gridforms/gridforms.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="//cdn.jsdelivr.net/npm/riot@3.10.3/riot.min.js"></script>
<script src="./tags/form-tag.js"></script>
<script src="./tags/tableLayout-tag.js"></script>
<script src="./tags/customerList-tag.js"></script>
<h1>CRM Light</h1>
<form-tag></form-tag>
<tableLayout-tag></tableLayout-tag>
<customerList-tag></customerList-tag>
<script src="https://www.gstatic.com/firebasejs/5.3.0/firebase.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
<script>riot.mount('form-tag,tableLayout-tag,customerList-tag')</script>
</body>
</html>