Skip to content
Permalink
4baa55a990
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
44 lines (36 sloc) 1.97 KB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#f00" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mobile App Development Room Chat</title>
<link href="css/main.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="img/logo57.png.png"/>
<link href="https://fonts.googleapis.com/css?family=Advent+Pro&display=swap" rel="stylesheet">
</head>
<body>
<div class="box">
<header><h1>Sending messages as <img class="smallImage" src="#" id="profilePicInput"/><span id="usernameInput">{UserName}</span></a> <span class="small" id="statusInput">{Status}</span></h1></header>
<header><h1><a href="profile.html">~Set your profile here~</a></h1></header>
</div>
<div id="chatBox">
<img class="smallImage" id="userProfilePic"></img>
<div id="chatInput">
<input type="Text" id="newMsg" placeholder=" Type a Messege!">
<button id="sendBtn">Send message</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/firebase-chat-functions.js"></script>
<script src="js/main.js"></script>
</body>
</html>