First Version working - needs tweaking
This commit is contained in:
98
data/index.html
Normal file
98
data/index.html
Normal file
@@ -0,0 +1,98 @@
|
||||
<!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>Dark Emergency CTF Timer - by hiabuto.de</title>
|
||||
|
||||
<meta name="description" content="A project, designed by hiabuto.de">
|
||||
<meta name="author" content="Marcel Peterkau">
|
||||
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<h3>
|
||||
Dark Emergency CTF Timer
|
||||
</h3>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
#
|
||||
</th>
|
||||
<th>
|
||||
Team
|
||||
</th>
|
||||
<th>
|
||||
Points
|
||||
</th>
|
||||
<th>
|
||||
Status
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr class="table-kgg">
|
||||
<td>
|
||||
1
|
||||
</td>
|
||||
<td>
|
||||
KGG
|
||||
</td>
|
||||
<td>
|
||||
%POINTS_KGG%
|
||||
</td>
|
||||
<td>
|
||||
%ACTIVE_KGG%
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="table-miliz">
|
||||
<td>
|
||||
2
|
||||
</td>
|
||||
<td>
|
||||
Miliz
|
||||
</td>
|
||||
<td>
|
||||
%POINTS_MILIZ%
|
||||
</td>
|
||||
<td>
|
||||
%ACTIVE_MILIZ%
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="table-gof">
|
||||
<td>
|
||||
3
|
||||
</td>
|
||||
<td>
|
||||
GOF
|
||||
</td>
|
||||
<td>
|
||||
%POINTS_GOF%
|
||||
</td>
|
||||
<td>
|
||||
%ACTIVE_GOF%
|
||||
</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 btn-primary">Submit</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user