forked from SibylLab/Program-Wars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·43 lines (41 loc) · 1.68 KB
/
index.html
File metadata and controls
executable file
·43 lines (41 loc) · 1.68 KB
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
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<script src='https://www.gstatic.com/firebasejs/5.7.2/firebase.js'></script>
<script>
// Initialize Firebase
var config = {
apiKey: 'AIzaSyCY69WOuaXGnceqA5oXEmw2mhn_g5nvh2I',
authDomain: 'program-wars.firebaseapp.com',
databaseURL: 'https://program-wars.firebaseio.com',
projectId: 'program-wars',
storageBucket: '',
messagingSenderId: '268876343967'
}
firebase.initializeApp(config)
</script>
<title>programming-wars</title>
<script src='https://code.jquery.com/jquery-3.1.1.slim.min.js' integrity='sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n' crossorigin='anonymous'></script>
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css' integrity='sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u' crossorigin='anonymous'>
<!--Paper theme-->
<link rel='stylesheet' href='https://bootswatch.com/3/paper/bootstrap.min.css'>
<link rel='stylesheet'
href='https://cdn.jsdelivr.net/npm/animate.css@3.5.2/animate.min.css'>
<!-- Latest compiled and minified JavaScript -->
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js' integrity='sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa' crossorigin='anonymous'></script>
<style>
#playfield::-webkit-scrollbar {
display: none;
}
.cardImage {
width: 100px;
padding: 10px;
}
</style>
</head>
<body>
<div id='app'></div>
<!-- built files will be auto injected -->
</body>
</html>