-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.php
More file actions
51 lines (50 loc) · 1.76 KB
/
index.php
File metadata and controls
51 lines (50 loc) · 1.76 KB
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
<?php require_once( dirname( __FILE__ ) . '/isvalid-load.php' ); ?>
<?php print_header(); ?>
<body class="permalink index">
<div class="container main">
<!-- Header -->
<div class="header">
<h1>IsValid</h1>
<canvas id="conconjr" width="250" height="30">CON CON NEVER HAS BUGS. IT IS YOUR BROWSER THAT HAS BUGS.</canvas>
<hr />
<p>Quantify experiment results</p>
</div>
<form class="horizontal-form">
<div class="row">
<div class="span6">
<h2>Samples</h2>
<div class="control-group">
<input class="input-xlarge" type="text" id="control-samples" tabindex="1" placeholder="Original">
</div>
<div class="control-group">
<input class="input-xlarge" type="text" id="experiment-samples" tabindex="3" placeholder="Experiment">
</div>
</div>
<div class="span6">
<h2>Conversions</h2>
<div class="control-group">
<input class="input-xlarge" type="text" id="control-conversions" tabindex="2" placeholder="Original">
</div>
<div class="control-group">
<input class="input-xlarge" type="text" id="experiment-conversions" tabindex="4" placeholder="Experiment">
</div>
</div>
<div class="span6 offset3 form-extra">
<h3 class="label-extra">Significance Requirement</h3>
<input class="input-xlarge" type="text" id="significance" tabindex="5" placeholder="95% (optional)">
</div>
</div>
</form>
<div class="row">
<div class="span4 offset4 alert alert-info" style="display:none;">Results will automatically load when you fill in each field</div>
</div>
<div class="results"></div>
</div> <!-- /container -->
<div class="container">
<div class="row footer">
<?php print_footer(); ?>
</div>
</div>
<?php print_footer_scripts(); ?>
</body>
</html>