-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (21 loc) · 1.09 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
<!doctype html>
<html>
<head>
<title> Angular 2 - Simple Application </title>
<!-- Libraries -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="resources/vendor/semantic.min.css"> <!-- Semantic-UI a css framework similiar to foundation,twitter bootstrap -->
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="login_css.css">
</head>
<body>
<script src="resources/systemjs.config.js"></script>
<!--<script> System.import('app.js').then(null, console.error.bind(console)); </script>-->
<script> System.import('login.js').then(null, console.error.bind(console)); </script>
<reddit></reddit>
</body>
</html>