-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
41 lines (37 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<base href="." />
<title>Multi-Step Wizard using Angular 2 And UI-Router 1.0 by Cathy Wun</title>
<!-- CSS Files -->
<link rel="icon" type="image/png" href="content/images/favicon.ico" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.css" />
<link rel="stylesheet" href="content/css/riliwan-rabo.css" />
<link rel="stylesheet" href="content/css/style.css" />
<link rel="stylesheet" href="content/css/loading-bars.css" />
<link rel="stylesheet" href="content/css/form.css" />
<!-- IE required polyfills, in this exact order -->
<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/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('app')
.catch(console.error.bind(console));
</script>
</head>
<body>
<multi-step-wizard-app>
<!-- Show simple splash screen-->
<div class="splash">
<div class="color-line"></div>
<div class="splash-title">
<h1>Angular 2 Multi-Step Wizard</h1>
<img src="content/images/loading-bars.svg" width="64" height="64" />
</div>
</div>
</div>
</multi-step-wizard-app>
</body>
</html>