-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
138 lines (109 loc) · 6.12 KB
/
options.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
<!DOCTYPE html>
<html>
<head><title>Motify Options</title>
<!-- Bootstrap Core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="assets/css/motify.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="assets/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<div class="row">
<div class="col-lg-6"><h4 align="center" >Motify</h4></div>
<div class="col-lg-6"><div class="text-center">
To give feedback and suggestions, please contact:
<a href="https://www.facebook.com/codebuff" target="_blank" class="btn btn-social-icon btn-facebook"><i class="fa fa-facebook"></i> Deepankar Tyagi </a>
<a href="https://twitter.com/codebuff" target="_blank" class="btn btn-social-icon btn-twitter"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/codebuff" target="_blank" class="btn btn-social-icon btn-github"><i class="fa fa-github"></i></a>
<!--a class="btn btn-social-icon btn-google-plus"><i class="fa fa-google-plus"></i></a-->
<a href="https://www.linkedin.com/in/codebuff" target="_blank" class="btn btn-social-icon btn-linkedin"> <i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="col-lg-6">
<div class="panel panel-success">
<div class="panel-heading">
Moodle Credentials
</div>
<div class="panel-body">
<div class="form-group">
<div class="form-group">
<label>Username of Moodle</label>
<input class="form-control" type="text" value="" id="name" />
</div>
<div class="form-group">
<label>Password of Moodle</label>
<input class="form-control" type="password" value="" id="pass" />
</div>
<label id="status"></label>
<button type="button" class="btn btn-outline btn-primary btn-lg btn-block" id="save">Get course list</button>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="panel panel-info">
<div class="panel-heading">
Notification Settings
</div>
<div class="panel-body">
<div class="alert alert-info">
<h5>You are receiving notifications for following courses</h5>
</div>
<p id="current_courses"> Yet to be selected</p>
<form>
<div id="rstatus"></div>
<button type="button" class="btn btn-outline btn-primary btn-lg btn-block" id="refresh" >update the notifications manually</button>
</form>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="panel panel-danger">
<div class="panel-heading">
Select Courses
</div>
<div class="panel-body">
<div class="form-group" id="coursesForm">
<div class="alert alert-danger">
<h4>To see/update the list of courses >> enter the correct credentials and then press the "Get Course List button"</h4>
</div>
<div class="alert alert-info">
<h4>if you still don't see the list of courses, make sure you entered correct credentials</h4>
</div>
</div>
<div id="cstatus"></div>
</div>
</div>
</div>
<!--div class="col-lg-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 align="center" >Feedback</h4>
</div>
<div class="panel-body">
<a href="https://github.com/codebuff"><img style="position: absolute; top: 0; left: 0; border: 0;" src="assets/img/github_fork.png" alt="Fork me on GitHub" ></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="panel panel-default">
<div class="panel-heading">
Theme settings
</div>
<div class="panel-body">
</div>
</div>
</div-->
</div>
</div>
</div>
<script src="options.js"></script>
</body>
</html>