2015-10-31 20:24:50 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>User Input</title>
|
2015-12-13 18:15:46 -05:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
|
|
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
|
2015-10-31 20:24:50 -04:00
|
|
|
<script>
|
|
|
|
System.config({
|
|
|
|
packages: {'app': {defaultExtension: 'js'}}
|
|
|
|
});
|
2015-12-11 14:59:57 -05:00
|
|
|
System.import('app/boot');
|
2015-10-31 20:24:50 -04:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|