-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresults.html
51 lines (47 loc) · 1.53 KB
/
results.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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Results</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<header>
<h3>Test results</h3>
</header>
<div class="table-wrapper">
<table class="table-users">
<tr>
<th> </th>
<th>First Name</th>
<th>First Test</th>
<th>Second Test</th>
</tr>
</table>
<div style="text-align: center;"><a href="index.html">Main</a></div>
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.4/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.4/firebase-firestore.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyALmguTypLcvbYCFFVKo3YhTmrlIMg6Q5s",
authDomain: "colorexperiment-c34a9.firebaseapp.com",
projectId: "colorexperiment-c34a9",
storageBucket: "colorexperiment-c34a9.appspot.com",
messagingSenderId: "874993095832",
appId: "1:874993095832:web:311f330ca5f99e32d1aced"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
const db = firebase.firestore();
</script>
<script src="./script.js"></script>
</body>
</html>