-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpage.html
61 lines (54 loc) · 1.61 KB
/
webpage.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> Login page</title>
<link rel="stylesheet" href="sty.css">
</head>
<style>
body {
background-image: url('bot2.jpg');
background-attachment: fixed;
background-size: cover;
}
</style>
<body>
<ul>
<li><a href="webpage.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="registration.html">register</a></li>
<li><a href="contact.html">Contact us</a></li>
</ul>
<div class="box">
<h2>LOGIN</h2>
<form>
<div class="inputBox">
<input type="text" name="" required=""></input>
<label>Username</label>
</div>
<div class="inputBox">
<input type="password" name="" required=""></input>
<label>Password</label>
</div>
<input type="submit" name="" value="Submit">
</form>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyDSu239S3mWDtA4TyTE_b5gTw5qGPC1sUw",
authDomain: "med-chatbot007.firebaseapp.com",
databaseURL: "https://med-chatbot007.firebaseio.com",
projectId: "med-chatbot007",
storageBucket: "med-chatbot007.appspot.com",
messagingSenderId: "733503275486",
appId: "1:733503275486:web:6495d444a4ba5360589d4f",
measurementId: "G-0RFNN1B2KH"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</html>