-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
executable file
·74 lines (57 loc) · 2.36 KB
/
admin.php
File metadata and controls
executable file
·74 lines (57 loc) · 2.36 KB
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
<?php
$client_array['user_name'] = "";
$client_array['potential_difference'] = 0;
$client_array['motion'] = "for";
file_put_contents("json/client.json", json_encode($client_array));
?>
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<script src="assets/jquery-3.1.1.min.js"></script>
<link rel="stylesheet" href="assets/bootstrap.min.css">
<link rel="stylesheet" href="assets/animate.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/admin.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-1 col-sm-3 col-md-3 col-lg-3"></div>
<div class="col-xs-10 col-sm-6 col-md-6 col-lg-6 input-box-wrapper animated pulse">
<h2 id="info-header">Debate Timer</h2>
<div id="score-controls" class="load-and-send">
<div class="form-group">
<label class="label-name">Name</label>
<div class="col-10">
<input type="text" class="form-control name-field" placeholder="">
</div>
</div>
<form>
<select>
<option selected="selected">for</option>
<option>against</option>
</select>
</form>
<button id='send-button' class='btn btn-success'>
OK
</button>
<div class="row">
<div id="conformButton" class="some-button hand-cursor animated shake">
Proceed?
</div>
</div>
</div>
</div>
<div class="col-xs-1 col-sm-3 col-md-3 col-lg-3"></div>
</div>
<div class="row">
<div id="timerStop" class="some-button hand-cursor animated bounceIn">
STOP
</div>
</div>
</div>
</body>
</html>