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>
<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="edit-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>
<header>
<div id="time"></div>
<div class="top">
<a href="profile.html" class="back"><div><</div></a>
<h1>EDIT PROFILE</h1>
<a href="index.html" height="30" width="30"><img src="images/home-icon.png" class="home-icon" alt="Home Icon" height="30" width="30"></a>
</div>
</header>
<div class="profile-form">
<div class="itemName">Display Name</div>
<p><input type="text" placeholder="Display Name" name="UserName" id="usernameInput"></p>
<div class="itemName">Status</div>
<p><input type="text" placeholder="Status Message" name="StatusMessage" id="statusInput"></p>
<div class="itemName">Profile Picture</div>
<p><input type="file" id="profilePicInput" name="profilePicInput"></p>
</div>
<div class="bottomPage"></div>
<div class="alignment">
<button id="profileSaveInput">SAVE PROFILE</button>
</div>
<script src="edit-profile.js"></script>
</body>
</html>