-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 913 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 913 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contacts</title>
<link href="https://fonts.googleapis.com/css?family=Oxygen" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="src/main.css">
</head>
<body>
<div id="app"></div>
<script src="src/users.js"></script>
<script src="src/router.js"></script>
<script src="src/server-api.js"></script>
<!-- <script src="src/contacts.js"></script> -->
<script src="src/contacts.js"></script>
<script src="src/keypad.js"></script>
<script src="src/edit-user.js"></script>
<script src="src/user.js"></script>
<!-- <script src="src/add-user.js"></script> -->
<script src="src/app.js"></script>
</body>
</html>