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.
		
		
		
		
		
			
		
			
				
					
					
						
							104 lines
						
					
					
						
							3.0 KiB
						
					
					
				
			
		
		
	
	
							104 lines
						
					
					
						
							3.0 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" alt="calendar">
 | |
| 						Calendar
 | |
| 					</h1>
 | |
| 			</div><!--/.nav-collapse -->
 | |
| 		</nav>
 | |
| 
 | |
| 
 | |
| 		<div class="container">
 | |
| 			<div class="row">
 | |
| 				<div class="navigation col-md-3">
 | |
| 					<h4>User</h4>
 | |
| 					<p>
 | |
| 						<img src="images/user.png" alt="user">
 | |
| 						Current user: <span id="username">unknown!</span>
 | |
| 					</p>
 | |
| 					<p>
 | |
| 						<a href="javascript:logout()">
 | |
| 							<img src="images/log-out.png" alt="log out">
 | |
| 							Log out
 | |
| 						</a>
 | |
| 					</p>
 | |
| 					<h4>Calendar</h4>
 | |
| 					<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>
 | |
| 					<h4>Categories:</h4>
 | |
| 					<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:
 | |
| 						</p>
 | |
| 						<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>
 | |
| 					</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>
 |