-
Notifications
You must be signed in to change notification settings - Fork 1
/
newmom.html
205 lines (192 loc) · 6.64 KB
/
newmom.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!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/mom.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" />
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- 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="" />
Meetings<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'"
checked
/>
<label for="new" style="cursor: pointer"><b>New</b></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'"
/>
<label for="new" style="cursor: pointer">Scheduled</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-mom">
<h2>MOM</h2>
<h4>Post MOM of a Meeting</h4>
<br /><br />
<h3>Add Details</h3>
<br />
<form action="">
<div class="newmomform">
<label for="name" class="choosemeeting">Choose Meeting: </label>
<select id="choosemeeting" name="meeting" style="padding: 0%">
<option value="blank"></option></select
><br /><br />
<label for="name" class="header">Header:</label>
<textarea name="header" id="header"></textarea>
<br /><br />
<!-- <label for="time" class="time">Time</label>
<input type="datetime-local" id="time" />
<br /><br /> -->
<div class="newpoint" id="newpoint">
<div>
<label for="p1" class="point">Point 1:</label>
<textarea class="p" name="point1" id="p1"></textarea><br /><br />
</div>
</div>
<!--<button type="button" id="plus">+ Add Point</button>-->
<div class="points-change">
<img
src="icons/addpoint.svg"
class="addpoint"
id="plus"
alt="add point"
/>
<img
src="icons/deletepoint.svg"
class="addpoint"
id="minus"
alt="delete point"
/>
<br /><br /><br />
</div>
<button class="post-mom-btn" onclick="handleSubmit(event)">
Post MOM
</button>
</div>
</form>
</div>
<!-- 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/mom.js"></script>
<script src="js/logout.js"></script>
</body>
</html>