-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmentorCheck_In.html
More file actions
119 lines (100 loc) · 4.04 KB
/
mentorCheck_In.html
File metadata and controls
119 lines (100 loc) · 4.04 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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Check In</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Font Awesome Icons -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS for Sidebar -->
<link href="../stylesheets/simple-sidebar.css" rel="stylesheet">
</head>
<body>
<style type="text/css" media="screen">
.fa{
padding-right: 5% !important;
line-height: inherit !important;
}
.list-text{
/*padding-left: 1;*/
}
.btn{
color: #FFFFFF;
background-color: #D633D6 !important;
border-color: #a36629 !important;
}
</style>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper" style="float:">
<ul class="sidebar-nav li-text">
<li class="sidebar-brand">
<a href="userMentorMain.html">
Mentor Dashboard
</a>
</li>
<li>
<a href="mentorCheck_In.html"
class="list-text"><i class="fa fa-clock-o fa-2x"></i>Check In</a>
</li>
<li>
<a href="mentorDocuments.html" class="list-text"><i class="fa fa-folder-o fa-2x"></i>Documents</a>
</li>
<li>
<a href="mentorMessages.html" class="list-text"><i class="fa fa-comment-o fa-2x"></i>Messages</a>
</li>
<li>
<a href="mentorRoster" class="list-text"><i class="fa fa-list-alt fa-2x"></i>Student Roster</a>
</li>
<li>
<a href="{{logout_url}}" class="list-text"><i class="fa fa-sign-out fa-2x"></i>Log Out</a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<p style="text-align:right;"><b>{{space_name}}: {{space_key}}</b></a></p>
<h1>Check In</h1>
<h5>Send a notification to your student(s) with Yo.</h5>
<br>
<br>
<div class= "container-fluid sign-in-div" id="Yo.">
<button id="yobutton" type="button" class="btn btn-default btn-lg acc-btn "> Yo. </button>
<br>
</div>
<br>
</p>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery Version 1.11.0 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
$('#yobutton').click(function() {
$.post('https://api.justyo.co/yoall/', {
'api_token': '7cf56fcc-1323-146f-8c65-3af7ffbc1aac'
}, function() {});
});
</script>
</body>
</html>