-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.14 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<div class="container" style="width: 900px;margin: 0 auto;">
</div>
</div>
<div class="popup-container">
<div class="popup">
<form action="/api/tournament/1/match">
<input type="hidden">
<div class="player-one">
<span class="player-name"></span>
<input type="number">
<input type="number">
<input type="number">
</div>
<div class="player-two">
<span class="player-name"></span>
<input type="number">
<input type="number">
<input type="number">
</div>
<button type="submit">Send form</button>
</form>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.2.1/lodash.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>