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" data-theme="light">
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#f00" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Your Profile</title>
<link href="profile.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Righteous&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" href="/chat-icon-57.png"/>
</head>
<body>
<div>
<header>
<div id="time"></div>
<div class="top">
<a href="index.html" class="back"><div><</div></a>
<h1>YOUR PROFILE</h1>
<a href="edit-profile.html" height="30" width="30"><img src="images/edit-icon.png" class="edit-icon" alt="Edit Icon" height="30" width="30"></a>
</div>
</header>
<div class="info">
<img class="profile-image" src="#" id="userProfilePicDisplay" alt="Profile Picture"/>
<div class="name">
<span id="usernameDisplay">{UserName}</span>
</div>
<div id="userStatusDisplay">{Status}</div>
</div>
<div class="bottomPage"></div>
<div class="alignment">
<div class="homeBtn">
<a href="index.html" class="homeTxt">MESSAGE CHAT</a>
</div>
</div>
<script src="profile.js"></script>
</body>
</html>