-
Notifications
You must be signed in to change notification settings - Fork 0
/
postpage.html
executable file
·88 lines (75 loc) · 3.72 KB
/
postpage.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
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
80
81
82
83
84
85
86
87
88
<!doctype html>
<html>
</html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Post 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/postpage.js"></script>
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-md fixed-top bg-dark navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="navbar-brand" href="index.html">GT Forum </a>
</li>
<li class="nav-item active">
<a class="nav-link" href="userpage1.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 role="main" class="container">
<div class="d-flex align-items-center p-3 my-3 text-white-50 bg-dark rounded box-shadow">
<div class="lh-100">
<h1 class="mb-0 text-white lh-100"><strong>Post Page</strong></h1>
<h6 >Topic:</h6>
</div>
</div>
<div id="post_list">
</div>
<div id="com_list">
</div>
<div class="my-3 p-3 bg-white rounded box-shadow">
<h5 class="border-bottom border-gray pb-2 mb-0">Leave Your Comments Here</h5>
<textarea class="form-control" rows="5" id="comment" style="resize:none"></textarea>
<div class="media text-muted pt-3">
<button id="post_btn" type="button" class="btn btn-success">Submit</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>