-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
52 lines (47 loc) · 898 Bytes
/
index.php
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
<?php
require_once('model/api_lol.php');
$lol = new ApiLol();
?>
<!DOCTYPE html>
<html>
<head>
<title>Current Game</title>
<meta charset='utf-8' />
<style>
.center{
display:flex;
align-items:center;
justify-content:center;
}
.center-items{
max-width:100%;
}
.team-blue{
list-style:none;
max-width:50%;
float:left;
}
.team-blue p, .team-red p{
font-size:19px;
}
.team-red{
list-style:none;
max-width:50%;
float:right;
}
</style>
</head>
<body class="center">
<section class="center-items">
<form action="index.php" method="get">
<input type="text" name="nome" value="" placeholder="Nickname" />
<input type="submit" value="Buscar" name="submit"/>
</form>
<?php
if(isset($_GET['submit'])){
$lol->Main();
}
?>
</section>
</body>
</html>