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="theme-color" content="#f00" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Chat Cubed</title>
<link rel="apple-touch-icon" href="apple-icon.png"/>
<link href="main.css?version=3" rel="stylesheet">
<link href="normalize.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<script src="https://kit.fontawesome.com/77acf96f91.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<!--Page content-->
<div id="content">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="top-container">
<a href="home.html"><i class="fas fa-angle-left"></i></a>
<h3>3440-mobile-app</h3>
</div>
</nav>
<div class="">
<h1 class="mt-4"></h1>
<div id="chatBox">
<div id="box">
</div>
<div id="chatInput">
<input id="newMsg"type="text" placeholder="Type a message...">
<button name="send" id="btn-send"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</div>
</div>
</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="https://cdn.jsdelivr.net/gh/joelsalisbury/firebase-chat-3440/firebase-chat-functions.js"></script>
<script src="main.js?version=2"></script>
</body>
</html>