-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
48 lines (41 loc) · 1.2 KB
/
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
<!--
TWEETBOARD START
This page helps the user construct a URL query string
which is appended to the tweetboard.php URL
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/base.css"/>
</head>
<body style="background:#000000;">
<div class="topbar">
<div class="fill">
<div class="container">
<div class="brand">
<img class="logo" src="img/logo.png" alt="flipstatus - a virtual Solari Board solution"/>
</div>
<form class="pull-right">
<button id="tryit" class="btn large primary">Try It!</button>
</form>
</div>
</div>
<div class="subhead">
<div class="container" style="padding:10px 0;">
TV and laptop sizes available
</div>
</div>
</div>
<div class="container intro"></div>
<!-- ============================================ -->
<!-- JS LIBRARIES -->
<script type="text/javascript" src="js/jquery-1.7.1-min.js"></script>
<script>
$("#tryit").click(function(){
window.location = "configure.php";
return false;
});
</script>
</body>
</html>