This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrap.php
55 lines (49 loc) · 1.61 KB
/
bootstrap.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
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Wingman - Gets you set up.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Gets you set up.">
<meta name="author" content="">
<!-- Le styles -->
<link href="/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 30px;
padding-bottom: 30px;
}
</style>
<link href="/css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body bgcolor="#EEEEEE">
<div class="container">
<!-- Main hero unit -->
<div class="hero-unit">
<center>
<h1>Wingman</h1>
</br>
<p>Gets you set up.</p>
<!-- <p><a href="#" class="btn btn-primary btn-large">Learn more »</a></p> -->
</center>
</div>
<!-- One row with 3 columns, each taking the width of 4 items (a row can have up to 12 columns) -->
<div class="row">
<div class="span5">
<a href='/signin.php?os=windows'> <img src="/img/windows2.png" alt="Windows" width="300" height="300"> </a>
</div>
<div class="span3">
<a href='/signin.php?os=linux'> <img src="/img/ubuntu.png" alt="Ubuntu" width="325" height="325"> </a>
</div>
<div class="span4">
<a href='/signin.php?os=osx'> <img src="/img/apple.gif" alt="Mac" width="225" height="225"> </a>
</div>
</div>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="/js/jquery-1.10.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>