Skip to content
Permalink
c7cf713a8e
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
25 lines (24 sloc) 1005 Bytes
<!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>Welcome to Chatmate!</title>
<link href="main.css?version=2" rel="stylesheet">
<link rel="manifest" href="manifest.json?version=2">
</head>
<body>
<header>
<a><img src="imgs/more.png" alt="Menu Icon" height = 20px width = 30px></a>
<h1>Welcome to Chatmate! &nbsp<span id="usernameInput" contenteditable="true">{UserName}</span></h1>
<a href="profile.html"><img src="imgs/profile.png" alt="Profile Icon" height = 30px width = 25px></a>
</header>
<div id="chatBox"></div>
<div id="chatInput">
<input id="newMsg" type="text" placeholder="type a message!">
<button id="sendBtn">Send</button>
</div>
<script src="main.js?version=2"></script>
</body>
</html>