-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
149 lines (127 loc) · 7.35 KB
/
calendar.html
File metadata and controls
149 lines (127 loc) · 7.35 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href='css/vendor/bootstrap.min.css' rel='stylesheet' />
<link href='css/vendor/fullcalendar.css' rel='stylesheet' />
<link href='css/style.css' rel='stylesheet' />
<script src='js/vendor/jquery.min.js'></script>
<script src='js/vendor/moment.min.js'></script>
<script src='js/vendor/bootstrap.min.js'></script>
<script src='js/vendor/fullcalendar.js'></script>
<script src='js/events.js'></script>
<script src='js/calendar.js'></script>
<!--[if lt IE 8]>
<link href="/css/vendor/bootstrap-ie7.css" rel="stylesheet">
<![endif]-->
<title>Assignment Details</title>
</head>
<body>
<img src="viewlogo.png" alt="Logo" width="150" height="100">
<b> Welcome </b>
<a href="login.html" class="btn btn-danger btn-lg" role="button" style='float:right'>LOGOUT</a>
<!--<button type="button" class="btn btn-danger btn-lg" style='float:right'>LOGOUT</button> -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<p class="navbar-brand" id="todaysDate"></p>
</div>
</nav>
<div class="container-fluid row">
<div id='calendar1' class='calendar col-md-8'></div>
<div id='calendar2' class='calendar col-md-4'></div>
</div>
<div class="modal fade" id="newEvent" role="dialog" aria-labelledby="eventFormLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="newEvent">Add New Assignment</h4>
</div>
<form>
<div class="modal-body">
<div class="form-group">
<label for="title" class="form-control-label">Assignment Statement/ Test Notification</label>
<input type="text" class="form-control" id="title">
<label for="title" class="form-control-label">Due time 'hh:mm a/pm'</label>
<input type="text" class="form-control" id="due_time">
<label for="title" class="form-control-label"> Maximum Marks </label>
<input type="text" class="form-control" id="max_marks">
<label for="input file" >Upload Assignment File</label>
<input type="file" class="form-control-file" id="input file">
</div>
<label for="something" class="form-control-label">Enter your perceived difficulty</label>
<div class="radio">
<label><input type="radio" name="optradio" id='diff1' value=1><img src="images/easy.png" alt="smile emoji" style="width:40px;">    EASY</label>
</div>
<div class="radio">
<label><input type="radio" name="optradio" id='diff2' value=2><img src="images/moderate.png" alt="unmoved emoji" style="width:40px;">    MODERATE</label>
</div>
<div class="radio">
<label><input type="radio" name="optradio" id='diff3' value=3><img src="images/difficult.png" alt="sad emoji" style="width:40px;">    DIFFICULT</label>
</div>
<div class="radio">
<label><input type="radio" name="optradio" id='diff4' value=4><img src="images/verydifficult.png" alt="scared emoji" style="width:40px;">    VERY DIFFICULT</label>
</div>
</div>
<!---
<div class="cont">
<div class="stars">
<form action="">
<input class="star star-5" id="star-5-2" type="radio" name="star"/>
<label class="star star-5" for="star-5-2"></label>
<input class="star star-4" id="star-4-2" type="radio" name="star"/>
<label class="star star-4" for="star-4-2"></label>
<input class="star star-3" id="star-3-2" type="radio" name="star"/>
<label class="star star-3" for="star-3-2"></label>
<input class="star star-2" id="star-2-2" type="radio" name="star"/>
<label class="star star-2" for="star-2-2"></label>
<input class="star star-1" id="star-1-2" type="radio" name="star"/>
<label class="star star-1" for="star-1-2"></label>
</form>
</div>
--->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" id="submit">Add this!</button>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="editEvent" role="dialog" aria-labelledby="eventFormLabel" aria-hidden="true" data-persist="false">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="editEvent">Update Assignment</h4>
</div>
<form>
<div class="modal-body">
<div class="form-group">
<label for="title" class="form-control-label">Assignment</label>
<input type="text" class="form-control" id="editTitle">
<label for="title" class="form-control-label">updated due time 'hh:mm a/pm'</label>
<input type="text" class="form-control" id="editTime">
<label for="input file" class="form-control-label">Input file</label>
<input type="file" class="form-control-file" id="editFile">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger left" id="delete">Delete Event</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" id="update">Update Event</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>