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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DMD 3440 Chatroom</title>
<link href="main.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="/img/custom_icon.png"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="top">
<div id="flexTop">
<div class="fillSpace"></div>
<h1>It's Chat Time, <span id="usernameInput"> { UserName}</span></h1>
<div id="profileImg"> <a id="profile" href="https://github.uconn.edu/pages/ejb17013/mobile-app-chat-app/profile.html"><img class="smallImage" src="#" id="profilePicInput"/></a></div>
</div>
<h3 id="status">Status: <span class="small" id="statusInput">{Status}</span></h3>
</div>
<div class="middle">
<h3>Chaotic Mobile App Chat</h3>
</div>
<div id="chatBox">
</div>
<div class="bottom">
<input id="chat-input" type="text" placeholder="Send a message!">
<button id="send-button">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="firebase-config.js"></script>
<script src="register-sw.js"></script>
<script src="https://cdn.jsdelivr.net/gh/joelsalisbury/firebase-chat-3440/firebase-chat-functions.js"></script>
<script src="main.js"></script>
<!-- fixed somee css maybe idk man -->
</body>
</html>