This repository was archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (96 loc) · 3.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Call Class</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script type="text/javascript" src="scripts/jquery.min.1.12.0.js"></script>
<script type="text/javascript" src="scripts/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="sidebar-css/sidebar.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="profile-files/profile.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="nav navbar-brand" href="#">Call Class</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a></a></li>
<li><a></a></li>
<li><a href="#">SMP</a></li>
<li><a href="#">School and Partner</a></li>
</ul>
<form class="navbar-form navbar-left" >
<div class="input-group" style="width:250%">
<input type="text" class="form-control" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-plus-sign"></span> Add Event</a></li>
<li><a href="#"><span class="glyphicon glyphicon-bell"></span> </a></li>
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Out</a></li>
<!-- <li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li> -->
</ul>
</div>
</div>
</nav>
<div class="row">
<div class="col-md-2 sidebar">
<div class="mini-submenu">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</div>
<div class="list-group">
<button id="dashboard" class="list-group-item">
<i class="fa fa-comment-o"></i> Call Class
</button>
<a href="#" class="list-group-item">
<i class="fa fa-search"></i> Open School
</a>
<a href="#" class="list-group-item">
<i class="fa fa-user"></i> Favourite
</a>
<a href="#" class="list-group-item">
<i class="fa fa-folder-open-o"></i> Educator <!-- <span class="badge">14</span> -->
</a>
<a href="#" class="list-group-item">
<i class="fa fa-bar-chart-o"></i> Mentor <!-- <span class="badge">14</span> -->
</a>
<button id="profile" class="list-group-item">
<i class="fa fa-envelope"></i> Profile
</button>
</div>
</div>
<div class="col-sm-10">
<div id="mycontent">
</div>
</div>
</div>
</body>
</html>
<script type="text/javascript">
$(document).ready(function() {
$('#profile').click(function(){
$("#mycontent").load("profile-files/profile.html");
});
$('#dashboard').click(function(){
$("#mycontent").load("dashboard.html");
});
});
</script>