38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| 
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <section class="container">
 | |
|     <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
 | |
|     <!-- KingOfDog Website - Leaderboard -->
 | |
|     <ins class="adsbygoogle"
 | |
|          style="display:inline-block;width:728px;height:90px"
 | |
|          data-ad-client="ca-pub-8128132564337398"
 | |
|          data-ad-slot="9705213265"></ins>
 | |
|     <script>
 | |
|     (adsbygoogle = window.adsbygoogle || []).push({});
 | |
|     </script>
 | |
|     <div class="row">
 | |
|         <h1 class="center"><?= lang('twitch_title'); ?></h1>
 | |
|         <p class="lead center"><?= lang('twitch_description'); ?></p>
 | |
|     </div>
 | |
|     <div class="row">
 | |
|         <form class="form-inline">
 | |
|             <div class="input-group input-group-lg">
 | |
|                 <label class="sr-only" for="twitch-channel"><?= lang('twitch_channel'); ?></label>
 | |
|                 <input type="text" class="form-control" id="twitch-channel" name="twitch-channel" placeholder="<?= lang('twitch_channel'); ?>">
 | |
|                 <span class="input-group-btn">
 | |
|                     <button type="submit" class="btn btn-primary"><?= lang('twitch_search'); ?></button>
 | |
|                 </span>
 | |
|             </div>
 | |
|         </form>
 | |
|     </div>
 | |
|     <div class="row">
 | |
|         <div class="well well-lg">
 | |
|             <?= $result; ?>
 | |
|         </div>
 | |
|     </div>
 | |
| </section>
 |