start working on friends system
This commit is contained in:
42
client/friends.html
Normal file
42
client/friends.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>friends</title>
|
||||
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script src="/script.js"></script>
|
||||
<script src="/script_friends.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<div id="brand">
|
||||
<h2><a href="/">chookchat</a></h2>
|
||||
</div>
|
||||
|
||||
<ul>
|
||||
<li><a id="loginLink" href="/login">login</a></li>
|
||||
<li><a href="/friends">friends</a></li>
|
||||
<li><a href="/settings">settings</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div id="friends">
|
||||
<div id="friends-list">
|
||||
<div id="friends-header">
|
||||
<h1>friends</h1>
|
||||
</div>
|
||||
<div id="friends-list-links">
|
||||
<!-- List of friends inserted here -->
|
||||
</div>
|
||||
</div>
|
||||
<div id="friends-messenger">
|
||||
<div id="friends-messages">
|
||||
<!-- List of messages inserted here -->
|
||||
</div>
|
||||
<div id="friends-message-box">
|
||||
<textarea id="friends-textarea"></textarea>
|
||||
<button onclick="sendMessage()">Send</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user