-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserpage2.html
More file actions
executable file
·79 lines (71 loc) · 3.41 KB
/
userpage2.html
File metadata and controls
executable file
·79 lines (71 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
</html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User Page</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="css/offcanvas.css" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-database.js"></script>
<script src="js/config.js"></script>
<script src="js/userpage2.js"></script>
</head>
<body class=“container”>
<nav class="navbar navbar-expand-md fixed-top bg-dark navbar-dark">
<a class="navbar-brand" href="index.html">GT Forum </a>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="userpage2.html" id="userpage" >Post</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Profile</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="chat.html">Chat</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="canvas.html">Canvas</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="game.html">Game</a>
</li>
<li class="dropdown">
<a class="nav-link dropdown-toggle" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Account</a>
<div id="dynamic-menu" class="dropdown-menu" aria-labelledby="dropdown01">
<a class="dropdown-item" href="signin.html">Login</a>
</div>
</li>
</ul>
</nav>
<main class="container">
<div class=" align-items-center p-3 my-3 text-white-50 bg-dark rounded box-shadow">
<div>
<h1 class="text-white"><strong>User Page</strong></h1>
<small>Post Whatever you want</small>
</div>
</div>
<div id="post_list">
</div>
<div class=" bg-white rounded box-shadow">
<h5 class="border-bottom border-gray pb-2 mb-0">New Post</h5>
<textarea class="form-control" rows="10" id="post" style="resize:none"></textarea>
<div class="pt-3">
<button id="post_btn" type="button" class="btn btn-success">Post</button>
</div>
</div>
</main>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="js/offcanvas.js"></script>
</body>
</html>