-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathuser.html
24 lines (24 loc) · 864 Bytes
/
user.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<span class="navbar-text" id="user-title"></span>
</nav>
<div class="container">
<div><img id="user-img" width="64"></div>
<div id="user-name"></div>
<div><a href="#" id="user-following">following</a></div>
<div id="follow-container"><button onclick="follow()" id="follow-unfollow" class="btn btn-primary">Follow</button></div>
<div id="user-bio" style="white-space: pre-wrap;"></div>
<div>Clubs:</div>
<div id="user-clubs"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uuid/8.1.0/uuidv4.min.js"></script>
<script src="common.js"></script>
<script src="user.js"></script>
</body>
</html>