You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.7 KiB
92 lines
2.7 KiB
<!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">
|
|
<title>Calendar</title>
|
|
|
|
<link href="css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="css/custom.css" rel="stylesheet">
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="container">
|
|
<h1>
|
|
<img src="images/title.png">
|
|
Calendar
|
|
</h1>
|
|
</div><!--/.nav-collapse -->
|
|
</nav>
|
|
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="navigation col-md-3">
|
|
<div class="list-group">
|
|
<a class="list-group-item" href="#" onclick="showCategory(0)">
|
|
<img src="images/view-calendar-list.png" alt=""> Show appointments
|
|
</a>
|
|
<a class="list-group-item" href="#" onclick="showCreateNewEntry()">
|
|
<img src="images/appointment-new.png" alt=""> Create appointment
|
|
</a>
|
|
</div>
|
|
<label for="showPastAppointments">
|
|
<input type="checkbox" id="showPastAppointments" onclick="getListItems()">
|
|
Show appointments from the past
|
|
</label>
|
|
<h3>Categories:</h3>
|
|
<div class="list-group" id="categoryList"></div>
|
|
<form method="get" action="javascript:createNewCategory()" id="createCategory">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="Name" name="name">
|
|
<span class="input-group-btn">
|
|
<input class="btn btn-default" type="submit" value="create">
|
|
</span>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<div id="content" class="col-md-9">
|
|
<h2>Agenda</h2>
|
|
<p>Loading ...</p>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.container -->
|
|
|
|
<footer class="bs-docs-footer">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<p>
|
|
Thomas Battermann<br>
|
|
it14139 <span class="hl">[at]</span> lehre <span class="hl">·</span> dhbw-stuttgart <span class="hl">·</span> de
|
|
</p>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<p>
|
|
Sources:
|
|
<ul>
|
|
<li>Icons: <a href="https://github.com/rubenvb/oxygen-icons-svg">oxygen-icons-svg</a> by <a href="https://github.com/rubenvb">rubenvb</a></li>
|
|
<li><a href="http://getbootstrap.com/">Bootstrap</a></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Load javascript -->
|
|
<script src="js/calendar.js"></script>
|
|
<!-- bootstrap only! -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
|
<script src="js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|