-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscheduledmom.html
177 lines (164 loc) · 5.97 KB
/
scheduledmom.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- css links -->
<link type="text/css" rel="stylesheet" href="css/navbar.css" />
<link type="text/css" rel="stylesheet" href="css/scheduledmeeting.css" />
<link type="text/css" rel="stylesheet" href="css/scheduledmom.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link
type="text/css"
rel="stylesheet"
href="webfontkit-20201125-062530/stylesheet.css"
/>
<!-- Favicon -->
<link rel="icon" type="image/png" href="icons/favicon.png" />
<!-- title -->
<title>ADG | Admin Portal</title>
</head>
<body>
<div id="loader" class="center"></div>
<div class="left">
<!--NAVBAR Starts-->
<nav class="nav-active" id="navbar">
<!-- Logo in Navbar -->
<div class="logonav">
<img class="logo" src="icons/Group 2.svg" />
</div>
<!-- Nav Links -->
<ul class="navlinks">
<li>
<a href="newmeet.html">
<img class="icon" src="icons/meetings.svg" alt="" />
<b>Meetings</b><br
/></a>
<div class="meeting-radio">
<ul>
<li class="inner">
<a href="newmeet.html">
<input
type="radio"
name="gender"
value="new"
style="cursor: pointer"
onclick="window.location.href='newmeet.html'"
/>
<label for="new" style="cursor: pointer">New</label><br />
</a>
</li>
<li class="inner">
<a href="scheduledmeet.html">
<input
type="radio"
name="gender"
value="new"
style="cursor: pointer"
onclick="window.location.href='scheduledmeet.html'"
/>
<label for="new" style="cursor: pointer">Scheduled</label
><br />
</a>
</li>
</ul>
</div>
</li>
<li>
<a href="tasks.html">
<img class="icon" src="icons/task.svg" alt="" />
Tasks
</a>
</li>
<li>
<a href="newmom.html">
<img class="icon" src="icons/mom.svg" alt="" />
<b>MOM</b></a
>
<div class="meeting-radio">
<ul>
<li class="inner">
<a href="newmom.html">
<input
type="radio"
name="gender"
value="new"
style="cursor: pointer"
onclick="window.location.href='newmom.html'"
/>
<label for="new" style="cursor: pointer">New</label><br />
</a>
</li>
<li class="inner">
<a href="scheduledmom.html">
<input
type="radio"
name="gender"
value="new"
style="cursor: pointer"
onclick="window.location.href='scheduledmom.html'"
checked
/>
<label for="new" style="cursor: pointer"
><b>Scheduled</b></label
><br />
</a>
</li>
</ul>
</div>
</li>
<li>
<a href="members.html">
<img class="icon" src="icons/members.svg" alt="" />
Members
</a>
</li>
</ul>
</nav>
<!--NAVBAR Ends-->
<div class="out">
<div class="initial" id="initial">
MN
</div>
<div class="admin-name">
<span id="name-tag">Member Name</span>
<span class="name-desc" id="name-desc">Designation</span>
</div>
<button class="logout" onclick="logout()">Log Out</button>
</div>
</div>
<div class="middle">
<h2>MOM</h2>
<h4>Already Posted MOM</h4>
<div class="fetchedMOMS"></div>
</div>
<div class="blank"></div>
<div class="right" id="mom-right">
<!-- <div class="momdetails">
<h4 class="momheading">Core Meeting MOM</h4>
<p>08 Mar 2021, 09:00PM</p><br>
<p>A meeting was called by the Board regarding work related to the upcoming event that is to be held on 20 Oct 2020.</p><br>
<p class="bold">Points Discussed</p>
<ul>
<li class="mompoint">Everyone has to get atleast 5 participants from their end.</li>
<li class="mompoint">Desk duties will be alloted and everyone is asked to report on time.</li>
<li class="mompoint">Valid reason has to be provided for not attending the meeting in the ADG Internals app.</li>
</ul>
</div> -->
</div>
</body>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-analytics.js"></script>
<script src="js/firebase.js"></script>
<script src="./js/scheduledmom.js"></script>
<script src="./js/logout.js"></script>
</html>