-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselected.php
40 lines (31 loc) · 971 Bytes
/
selected.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
<?php
include ("template/header.php");
require ("core/get-battle-info.php");
?>
<!--Main page-->
<div id="page-wrapper">
<div class="col-md-12 wrap-content text-center">
<img class="battle-img-container" src="<?php echo $battle_img;?>">
</div>
<div class="col-md-10 col-md-offset-1 wrap-snippet">
<div class="col-md-12 text-center">
<h3><?php echo $description;?></h3>
<h2>Svakhet: <?php echo $weekness; ?></h2>
</div>
<div class="col-md-2" >
<div id="heros-view-arena">
<!--Heros shows up here-->
</div>
</div>
<div class="col-md-2">
<?php echo $slotsView ?>
<div class="btn btn-default button col-md-8" id="reset_setup">Resett</div>
</div>
<div class="col-md-4 text-center">
<div class="btn btn-default button lg-button" id="ativate-mission">Start oppdrag</div>
</div>
</div>
</div><!-- /#wrapper -->
<?php
include ("template/footer.php");
?>