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="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Profile</title>
<link href="main.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="/img/custom_icon.png"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="profile-top">
<a id="backToProfile" href="https://github.uconn.edu/pages/ejb17013/mobile-app-chat-app/profile.html">&lt</a>
<h1>Edit Profile</h1>
<a id="ignore" href="#"> &lt </a>
</div>
<div class="profileMargin">
<!-- <div id="profileImg"> <img class="smallImage" src="#" id="profilePicInput"/></div> -->
<div class="profileInputs">
<p><input type="text" placeholder="Display Name" name="Username" id="usernameInput"></p>
<p><input type="text" placeholder="Status Message" name="StatusMessage" id="statusInput"></p>
<p><input type="file" id="profilePicInput" name="profilePicInput"></p>
</div>
<button id="profileSaveInput" onclick="savedProfile()">Save Changes</button>
<p id="showText" style="display: none"> Profile changes have been saved.</p>
</div>
<script src="edit-profile.js"></script>
</body>
</html>