-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
88 lines (68 loc) · 2.57 KB
/
index.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PairIT</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Le styles -->
<link href="../assets/css/bootstrap.css" rel="stylesheet">
<link href="../assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="../assets/css/darkstrap.css" rel="stylesheet">
<link href="../assets/css/style.css" rel="stylesheet">
<script src="../assets/js/jquery.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript">
$(document).ready(function() {
$('#name_input').focus();
});
</script>
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
<h3 class="muted">Pair<span style="color: #f92672;">IT</span></h3>
</div>
<hr>
<div class="jumbotron well">
<h3>Pair programming made easy!</h3>
<p class="lead">Initiate a hassle-free, live pair programming session. You don't have to be in the same room.</p>
<form id="sessionform" action="create_session" method="post">
<br/><br/>
<input type="submit" class="btn btn-large btn-success" value="Start a session"/>
</form>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span6">
<h4>Fast.</h4>
<p>No registration. Create a new session and share the link, we'll bring it live.</p>
<h4>Communicate.</h4>
<p>Live chat to communicate with your partner.</p>
<h4>Just like an IDE.</h4>
<p>On the fly syntax highlighting; code checker that notifies you of glitches.</p>
</div>
<div class="span6">
<h4>Pair programming</h4>
<p>Switch between the driver and navigator modes anytime.</p>
<h4>Show it.</h4>
<p>Add spectators to the pair session.</p>
<h4>Share.</h4>
<p>When you're done, share the code on gist/github.</p>
</div>
</div>
<hr>
<div id="footer">
<div class="container">
<p class="muted credit">Powered by: <a href="#">ufowam</a>; <a href="#">ayrus</a> and <a href="#">arods</a>.</p>
</div>
</div>
</div>
</body>
</html>