-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
32 lines (27 loc) · 827 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
<?php
session_start();
unset($_SESSION)
//select winner.name,loser.name from matchups left join logos winner on winner.id = matchups.winner left join logos loser on loser.id = matchups.loser;
?>
<html>
<head>
<link href="css/bootstrap.css" rel="stylesheet">
</head>
<body>
<div class="row" style="height: 20em"></div>
<div class="row">
<div class="col-3">
</div>
<div class="col-6" style="text-align: center">
<h1>Logo contest</h1>
</div>
</div>
<div class="row">
<div class="col-3">
</div>
<div class="col-6" style="text-align: center">
<a class="btn btn-primary" role="button" href="vote.php">Start</a>
</div>
</div>
</body>
</html>