Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#f00" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DMD 3440 - Room of Chat</title>
<link rel="manifest" href="manifest.json?version=2">
</head>
<body>
<div id="chatLog"></div>
<style>
#chatLog{
max-height: 80vh;
overflow: scroll;
}
.myMessage{
position: fixed;
width: 100%;
bottom: 0px;
}
</style>
<div id="chatLog"></div>
<div>My Profile pic:
<input type="file" id="profilePic">
<button id="saveProfile"></button>
</div>
</div>
<div class="myMessage">
<input type="text" id="inputBox">
<button id="sendButton">Send</button>
</div>
<!-- Firebase App (the core Firebase SDK) is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-app.js"></script>
<!-- If you enabled Analytics in your project, add the Firebase SDK for Analytics -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-analytics.js"></script>
<!-- Add Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-firestore.js"></script>
<script src="js/firebase-config.js"></script>
<script src="js/register-sw.js"></script>
<script src="js/profile.js"></script>
<script src="js/firebase-chat-functions.js"></script>
<script src="js/demo.js"></script>
</body>
</html>