-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (58 loc) · 1.83 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Please Work</title>
</head>
<body>
<h1>Please work with Firebase</h1>
<h2>Create New Technician!!!</h2>
<table align="center">
<tr>
<td width=250>Technician First Name</td>
<td width=700><input id="firstName" type="text" name="firstName"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Technician Last Name</td>
<td><input id="lastName" type="text" name="lastName"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan=2><button id="save" type="button" onclick="submitBtn()" >Submit</button></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<!-- 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>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.4/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyDDSWMqf6-V57huLpw37qVLSdJdM14_ZXc",
authDomain: "pleasework-4e932.firebaseapp.com",
databaseURL: "https://pleasework-4e932-default-rtdb.firebaseio.com",
projectId: "pleasework-4e932",
storageBucket: "pleasework-4e932.appspot.com",
messagingSenderId: "778216765467",
appId: "1:778216765467:web:2f8295dee7168a12b4a0be",
measurementId: "G-628JPPX8JQ"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<script src= "scripts.js"></script>
</body>
</html>