-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
59 lines (47 loc) · 1.21 KB
/
index.php
File metadata and controls
59 lines (47 loc) · 1.21 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
52
53
54
55
56
57
58
59
<html>
<title>JumpStart</title>
<style>
body{background-color: ; width: 100%}
html{width: 100%}
td{text-align: right; background-color: ; border-left:solid 75px transparent}
th{background-color: ;}
table{border-collapse: separate; margin: 0 auto; margin-top: 13%; border-spacing: 10px;}
input.hide{visibility: hidden}
*{font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif}
</style>
<body background="bkgrd.png">
<?php
print "<form name = 'tools' action = 'fetch.php' method='get'>
<table>
<tr>
<th>Homebrew</th>
<td><input type = 'checkbox' name = 'hb' size = '3' /></td>
</tr>
<tr>
<th>Homebrew Versions</th>
<td><input type = 'checkbox' name = 'hbVrsn' size = '3' /></td>
</tr>
<tr>
<th>Homebrew Bundle</th>
<td><input type = 'checkbox' name = 'hbBndle' size = '3' /></td>
</tr>
<tr>
<th>Homebrew Cask</th>
<td><input type = 'checkbox' name = 'hbCsk' size = '3' /></td>
</tr>
<tr>
<th>XCode</th>
<td><input type = 'checkbox' name = 'xCode' size = '3' /></td>
</tr>
<tr>
<th>Latest OSX Software Updates</th>
<td><input type = 'checkbox' name = 'osxUp' size = '3' /></td>
</tr>
<tr>
<td><input type='submit' value='Submit'></td>
</tr>
</table>
</form>";
?>
</body>
</html>