-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtaskDone.html
More file actions
30 lines (27 loc) · 927 Bytes
/
taskDone.html
File metadata and controls
30 lines (27 loc) · 927 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>B3 Cleaning</title>
</head>
<body>
<input id="userName" placeholder="User Code" />
<button id="userNameBtn">Good Job!</button>
<br>
<input type="radio" name="gender" id="dishes" value="dishes"> Dishes</input>
<input type="radio" name="gender" id="trash" value="trash"> Trash</input>
<script src="https://www.gstatic.com/firebasejs/4.9.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyBJ1Bpa5jFdG6R2gQPRXIWwFDBG8op4HxU",
authDomain: "keep-b3-fresh.firebaseapp.com",
databaseURL: "https://keep-b3-fresh.firebaseio.com",
projectId: "keep-b3-fresh",
storageBucket: "keep-b3-fresh.appspot.com",
messagingSenderId: "635499308082"
};
firebase.initializeApp(config);
</script>
<script type="text/javascript" src="scripts/js.js"></script>
</body>
</html>