Skip to content
Permalink
44b673bf1b
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
Latest commit 9e8f259 May 6, 2020 History
1 contributor

Users who have contributed to this file

37 lines (30 sloc) 1.44 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400&display=swap" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="flex">
<img class="smallImage" src="#" id="profilePicInput" alt="Profile Picture"/>
<h1>Username:<span id="usernameInput"> {UserName}</span></h1>
<div class="profileStatus">
<h1>Status: <span class="small" id="statusInput">{Status}</span></h1>
</div>
<h1 class="button"> <a href="index.html">Go Back to Chat App</a></h1>
</div>
</body>
<!-- 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/display_profile.js"></script>
</html>