-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (60 loc) · 3.24 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Date Night</title>
<link href='https://fonts.googleapis.com/css?family=Amatic SC' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.css">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="ui container" id="mainInformationDiv">
<div class="logoDiv">
<h1 id="logoText">Date Night</h1>
<hr>
</div>
<div id="mainPage">
<div id="search-form">
<h4>I'm in the mood for:</h4>
<div class="ui fluid input">
<input type="text" id="type" placeholder="Example: Vegan Tacos">
</div>
<h4>I want this in it:</h4>
<div class="ui fluid input">
<input type="text" id="search" placeholder="Which ingredients do I want? ex= avocado, hamburger">
</div>
</div>
<div>
<h4>But I don't want:</h4>
<div class="ui fluid input">
<input type="text" id="exclude" placeholder="which Ingredient do I NOT want? ex= beans, pickles">
</div>
<h5>note: make sure to fill in every field!<h5>
</div>
<h4>Flavor Profile:</h4>
<div id=sliderSectionAll>
<div id="slidecontainer1">
<input type="range" min="0" max="9" value="0" step="1" class="slider" id="rangeSlider1" onChange="captureSliderChange1(this.value)"> <strong> SWEET:  </strong> <span id="slider1HTMLUpdate" class="flavorNumberDisplay"> 0 </span>
</div>
<div id="slidecontainer2">
<input type="range" min="0" max="9" value="0" step="1" class="slider" id="rangeSlider2" onChange="captureSliderChange2(this.value)"> <strong> SALTY:  </strong> <span id="slider2HTMLUpdate" class="flavorNumberDisplay"> 0 </span>
</div>
<div id="slidecontainer3">
<input type="range" min="0" max="9" value="0" step="1" class="slider" id="rangeSlider3" onChange="captureSliderChange3(this.value)"> <strong> SAVORY:  </strong> <span id="slider3HTMLUpdate" class="flavorNumberDisplay"> 0 </span>
</div>
<div id="slidecontainer4">
<input type="range" min="0" max="9" value="0" step="1" class="slider" id="rangeSlider4" onChange="captureSliderChange4(this.value)"> <strong> SPICY:  </strong> <span id="slider4HTMLUpdate" class="flavorNumberDisplay"> 0 </span>
</div>
</div>
<button class="ui blue button" id="submit" type="submit">Submit</button>
</div>
<div id="results">
</div>
<div id="recipe"></div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.css"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="app/app.js"></script>
</html>