-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsersFilters.html
More file actions
73 lines (43 loc) · 1.43 KB
/
UsersFilters.html
File metadata and controls
73 lines (43 loc) · 1.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
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="style.css" media="screen and (orientation:portrait)"/>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<html>
<head>
<title> Usual Responses </title>
</head>
<body>
<!-- HTML5 article tag for content -->
<div id="content">
<button class="back" onClick="location.href='ProfilePage.html';">Back</button>
<br>
<header>Usual Responses</header>
<!-- P stands for paragraph -->
<p>Your saved preferneces! Hit "Confirm" to find a new restaurant.</p>
<label for="Price">Price:</label>
<p>$</p>
<label for="Distance">Choose a Distance:</label>
<p>5 Miles</p>
<label for="Type">Choose a Type:</label>
<p>Any Type</p>
<label for="DietRestric">Choose a Dietary Restriction:</label>
<p>None</p>
<label for="Rating">Choose a Rating:</label>
<p>4 Stars</p>
<label for="Eat">Choose a Way to Eat:</label>
<p>Delivery</p>
<button class="confirm" onClick="location.href='ThaiTime.html';">Confirm</button>
<button class="confirm" onClick="location.href='Error.html';">Edit</button>
</div>
<script>
function randomlinks(){
var links=new Array()
links.push("ThaiTime.html")
links.push("Sake.html")
links.push("Wendy.html")
links.push("Boynton.html")
var rannum=Math.round(Math.random()*links.length)
location.href=links[rannum]
}
</script>
</body>
</html>