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(); inputFill()">
<!--Page content-->
<div id="content">
<div class="">
<div class="profile">
<div>
<img class="smallImage" src="#" id="userProfilePicDisplay" alt="profile picture"/>
</div>
<div class="change-pic">
<label id= "new-pro" for="profilePicInput">Change Profile Photo</label>
<input type="file" id="profilePicInput" name= "profilePicInput">
</div>
<div class="profile-status">
<label for="status">Enter your status</label>
<input type="text" id="status" name="status">
</div>
</div>
<div class="update">
<h2>Update your profile</h2>
<div class="profile-input">
<div class="profle-input-fname">
<label for="fname">First name</label>
<input placeholder="first name" type="text" id="fname" name="fname">
</div>
<div class="profle-input-lname">
  <label for="lname">Last name</label>
<input placeholder="last name" type="text" id="lname" name="lname">
</div>
<!-- <div>
<label for="profilePicInput">Picture</label>
<input type="file" id="profilePicInput" name= "profilePicInput">
</div> -->
</div>
<button onclick="update(); location.reload();" class="btn btn-update">Update</button>
</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=2"></script>
</body>
</html>