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 href="profile.css?version=1" rel="stylesheet">
<link href="home.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&family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body onload="newProfilePic(); proName()">
<!--Page content-->
<div id="content">
<div class="">
<div class="profile-main profile">
<div>
<img class="smallImage" src="#" id="userProfilePicDisplay" alt="profile picture"/>
</div>
<h1><span id="profileName"></span> says...</h1>
<div class="show-status">
<p id="status"></p>
</div>
<a href="profile.html">Edit Profile</a>
</div>
<div class="bottom-nav">
<a href="home.html"><i class="fas fa-home"></i>Home</a>
<a href="profile-main.html"><i class="fas fa-user"></i>Profile</a>
</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=1"></script>
</body>
</html>