-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (35 loc) · 2.14 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 ng-app='regXpress'>
<head>
<meta charset="utf-8">
<title>regXpress</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel="stylesheet" href="/app/css/styles.css">
<base href="/">
</head>
<body>
<main>
<navbar></navbar>
<ui-view></ui-view>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/1.0.3/angular-ui-router.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.3/socket.io.js" charset="utf-8"></script>
<script src="app/app.module.js " charset="utf-8 "></script>
<script src="app/app.config.js " charset="utf-8 "></script>
<script src="app/navbar/navbar.component.js " charset="utf-8 "></script>
<script src="app/navbar/navbar.controller.js " charset="utf-8 "></script>
<script src="app/roomlist/roomlist.component.js " charset="utf-8 "></script>
<script src="app/roomlist/roomlist.controller.js " charset="utf-8 "></script>
<script src="app/gameroom/gameroom.component.js " charset="utf-8 "></script>
<script src="app/gameroom/gameroom.controller.js " charset="utf-8 "></script>
<script src="app/server.service.js " charset="utf-8 "></script>
<script src="app/landingpage/landingpage.component.js " charset="utf-8 "></script>
<script src="app/landingpage/landingpage.controller.js " charset="utf-8 "></script>
</main>
</body>
</html>