-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuggestions
More file actions
126 lines (88 loc) · 3.43 KB
/
Copy pathSuggestions
File metadata and controls
126 lines (88 loc) · 3.43 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Find A Team</title>
<link rel="stylesheet" type="text/css" href= Main2.css>
<link rel="stylesheet" type="text/css" href= Animate.css>
<!--Responsive Columns (1-12) Thank you to: http://www.responsivegridsystem.com/-->
<link rel="stylesheet" href="ResponsiveGrid.css">
</head>
<body>
<div class="full">
<h1>Thanks for your input!</h1>
<h4>Just a few more Qs to get you through</h4>
<div id="formWrapper">
<!--
<?php
if($_POST['formSubmit'] == "Submit")
{
$varMovie = $_POST['formEmail'];
$varMovie = $_POST['formInterests']; }
?>
-->
<form action="Matched.html" method="post">
<div class="section">
<div class="col span_1_of_3">
<h2>Have you tried coding Python?</h2>
<img src="python.png">
<h2><input type="checkbox"/></h2>
</div>
<div class="col span_1_of_3">
<h2>Ever played with an oculus rift?</h2>
<img src="oculus.png">
<h2><input type="checkbox"/></h2>
</div>
<div class="col span_1_of_3">
<h2>Do you hate Apple with a burning passon?</h2>
<img src="android.png">
<h2><input type="checkbox"/></h2>
</div>
</div>
<div class="section">
<div class="col span_1_of_3">
<h2>Do you plan on sleeping tonight?</h2>
<img src="asleep.png">
<h2><input type="checkbox"/></h2>
</div>
<div class="col span_1_of_3">
<h2>Have you considered using hardware?</h2>
<img src="hardware.png">
<h2><input type="checkbox"/></h2>
</div>
<div class="col span_1_of_3">
<h2>Are food and swag your main priorities?</h2>
<img src="food.png">
<h2><input type="checkbox"/></h2>
</div>
</div>
<div class="section">
<h2>Please check it if it applies to you</h2>
<h1><input type="submit" name="formSubmit" value="Submit"></h1>
</form>
</div>
</div>
</div>
<!--
<form action="data2.txt" method="POST">
<input name="field1" type="text" />
<input name="field2" type="text" />
<input type="submit" name="submit" value="Save Data">
</form>
<?php
if(isset($_POST['field1']) && isset($_POST['field2'])) {
$data = $_POST['field1'] . '-' . $_POST['field2'] . "\n";
$ret = file_put_contents('mydata.txt', $data, FILE_APPEND | LOCK_EX);
if($ret === false) {
die('There was an error writing this file');
}
else {
echo "$ret bytes written to file";
}
}
else {
die('no post data to process');
}
-->
</body>
</html>