100 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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>%TITLE% - by hiabuto.de</title>
 | |
| 
 | |
|     <meta name="description" content="A Project, designed by hiabuto.de">
 | |
|     <meta name="author" content="Marcel Peterkau">
 | |
| 
 | |
|     <link href="css/style.css" rel="stylesheet">
 | |
| 	<!--<link href="css/bootstrap.min.css" rel="stylesheet">-->
 | |
| 
 | |
|   </head>
 | |
|   <body>
 | |
| 
 | |
|     <div class="container-fluid">
 | |
| 	<div class="row">
 | |
| 		<div class="col">
 | |
| 			<h3>
 | |
| 				%TITLE%
 | |
| 			</h3>
 | |
| 			<p>Battery Voltage: %BATTERY_VOLTAGE% V</p>
 | |
| 			<p>Battery Level: %BATTERY_LEVEL% %</p>
 | |
| 			<table class="table">
 | |
| 				<thead>
 | |
| 					<tr>
 | |
| 						<th>
 | |
| 							#
 | |
| 						</th>
 | |
| 						<th>
 | |
| 							Team
 | |
| 						</th>
 | |
| 						<th>
 | |
| 							Points
 | |
| 						</th>
 | |
| 						<th>
 | |
| 							Status
 | |
| 						</th>
 | |
| 					</tr>
 | |
| 				</thead>
 | |
| 				<tbody>
 | |
| 					<tr class="table-fac-1">
 | |
| 						<td>
 | |
| 							1
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%NAME_FAC_1%
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%POINTS_FAC_1%
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%STATUS_FAC_1%
 | |
| 						</td>
 | |
| 					</tr>
 | |
| 					<tr class="table-fac-2">
 | |
| 						<td>
 | |
| 							2
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%NAME_FAC_2%
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%POINTS_FAC_2%
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%STATUS_FAC_2%
 | |
| 						</td>
 | |
| 					</tr>
 | |
| 					<tr class="table-fac-3">
 | |
| 						<td>
 | |
| 							3
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%NAME_FAC_3%
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%POINTS_FAC_3%
 | |
| 						</td>
 | |
| 						<td>
 | |
| 							%STATUS_FAC_3%
 | |
| 						</td>
 | |
| 					</tr>
 | |
| 				</tbody>
 | |
| 			</table> 
 | |
| 			<form  action="index.html" method="get" role="form">
 | |
| 				<div class="form-group">		 
 | |
| 					<label for="commandInput">Command</label>
 | |
| 					<input type="text" class="form-control" id="commandInput" name="command" />
 | |
| 				</div>
 | |
| 				<button type="submit" class="btn">Submit</button>
 | |
| 			</form>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
|   </body>
 | |
| </html> |