This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcreatemeeting.html
130 lines (120 loc) · 6.02 KB
/
createmeeting.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
<!DOCTYPE html>
<html>
<head>
<title>Study Mates</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src="js/jquery-min.js"></script>
<script src="js/getUQ.js"></script>
<script src="js/dropdownmenu.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!--<script type="text/javascript" src="js/checkLogin.js"></script>
<script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js"></script>-->
<!--<script type="text/javascript" src="js/changeLogin.js"></script>-->
<link rel="icon" type="image/png" href="image/logo.png" sizes="16x16">
</head>
<body onLoad="getUQ();">
<ul id="nav-bar">
<li class="dropdown">
<button onclick="myFunction()" class="dropbtn"></button>
<div id="myDropdown" class="dropdown-content">
<a href="index.html">Map</a>
<a href="creategroup.html">Create Group</a>
<a href="createmeeting.html">Create Meeting</a>
<a href="group.html">Group</a>
<a href="meeting.html">Meeting</a>
<a href="messages.html">Messages</a>
<a href="profile.html">My Profile</a>
</div>
</li>
<li><a id="all-courses" href="index.html">ALL</a></li>
<li id="signin-wrap"><a id="signin" href="profile.html">Profile</a></li>
</ul>
<form id="createGroup" method="post">
<div class="row">
<div class="col-xs-12 text-center">
<h2> Create Group</h2>
</div>
<div class="col-xs-12 col-sm-6">
<div class="form-group" >
<label for="Name">Group name </label>
<input type="text" class="form-control" name="Name" id="name">
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="form-group" >
<label for="Courses">Course </label>
<select type="text" class="form-control" name="Courses" id="courses">
</select>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="form-group" >
<label for="Topic">Topic (optional) </label>
<input type="text" class="form-control" name="Topic" id="topic">
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="form-group" >
<label for="Desc">Description </label>
<input type="text" class="form-control" name="Desc" id="desc">
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-xs-7 col-sm-7 col-sm-offset-1">
<div class="form-group" >
<label for="StartTime">From </label>
<input type="text" class="form-control" name="StartTime" id="startTime" placeholder="xx:xx">
</div>
</div>
<div class="col-xs-5 col-sm-4 ">
<div class="form-group">
<label for="AM/PM"></label>
<select class="form-control" name="AM/PM"id="am/pm" style="width: 80px; margin-top:5px; margin-left:-25px;">
<option>AM</option>
<option>PM</option>
</select>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-xs-7 col-sm-7 col-sm-offset-1">
<div class="form-group" >
<label for="EndTime">To </label>
<input type="text" class="form-control" name="EndTime" id="endTime" placeholder="xx:xx">
</div>
</div>
<div class="col-xs-5 col-sm-4 ">
<div class="form-group">
<label for="AM/PM2"></label>
<select class="form-control" name="AM/PM2" id="am/pm2" style="width: 80px; margin-top:5px; margin-left:-25px;">
<option>AM</option>
<option>PM</option>
</select>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="form-group" >
<label for="name">Location</label>
<input type="text" class="form-control" id="startTime">
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="form-group" >
<label for="name">Room Number</label>
<input type="text" class="form-control" id="startTime">
</div>
</div>
<div class="col-xs-12 col-sm-12">
<div class="col-xs-6 col-sm-4 col-sm-offset-4 col-xs-offset-3">
<div class="form-group" >
<a href="index.html"><button type="submit" class="form-control" id="submit">Submit</a>
</div>
</div>
</div>
</div>
</form>
</body>
</html>