-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (95 loc) · 2.19 KB
/
index.html
File metadata and controls
165 lines (95 loc) · 2.19 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<html>
<body>
<div id="earnMoney">
<input type="submit" value = "Earn Money"/>
</div>
<div id="putRequest">
<form action="putRequest.php" method="post" enctype="multipart/form-data">
<label>price:</label>
<input type="text" name="price"/>
<br />
<label>place:</label>
<input type="text" name="place"/>
<br />
<label>time:</label>
<input type="text" name="time"/>
<br />
<label>file:</label>
<input type="file" name="file"/>
<br />
<input type="submit" value="upload & print"/>
</form>
</div>
<div id="signUp">
<form action="signUp.php" method="post" enctype="multipart/form-data">
<label>username:</label>
<input type="text" name="username"/>
<br />
<label>password:</label>
<input type="text" name="password"/>
<br />
<label>password2:</label>
<input type="text" name="password2"/>
<br />
<input type="submit" value = "sign up"/>
</form>
</div>
<div id="login">
<form action="login.php" method="post">
<label>username:</label>
<input type="text" name="username"/>
<br />
<label>password:</label>
<input type="text" name="password"/>
<br />
<input type="submit" value = "login"/>
</form>
</div>
<div id="login">
<input type="submit" value = "sort by price"/>
<input type="submit" value = "sort by distance"/>
<input type="submit" value = "sort by time"/>
<br />
<input type="submit" value = "price.distance.time"/>
<br />
<input type="submit" value = "price.distance.time"/>
<br />
<input type="submit" value = "price.distance.time"/>
<br />
</div>
<div id="takeTask">
price:
<br />
place:
<br />
time:
<br />
file:
<input type="submit" value = "download"/>
<br />
<input type="submit" value = "take the task"/>
</div>
<div id="confirmTask">
price:
<br />
place:
<br />
time:
<br />
file:
<input type="submit" value = "download"/>
<br />
<input type="submit" value = "take the task"/>
</div>
<div id="sellerEvaluation">
<input type="submit" value = "did it wrong"/>
<br />
<input type="submit" value = "not punctual"/>
</div>
<div id="buyerEvaluation">
<input type="submit" value = "didn't show up"/>
<br />
<input type="submit" value = "not punctual"/>
</div>
</body>
</html>