-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 2.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
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title class="btn btn-danger disabled">Cocktail Bible</title>
<link rel="stylesheet" href="bootstrap.css">
</head>
<body>
<div class="jumbotron">
<h1 class="display-3" >Cocktail Bible</h1>
<hr class="my-4">
<p class="lead">Create A New Cocktail</p>
<p class="lead">
<form id="cocktail-form">
<fieldset>
<div class="form-group">
<label for="name">Cocktail Name</label>
<input type="text" class="form-control" id="input-cocktail-name" >
</div>
<div class="form-group">
<label for="image">Image URL</label>
<input type="text" class="form-control" id="input-image-url" >
</div>
<div class="form-group">
<label for="instructions">Instructions</label>
<textarea class="form-control" id="input-instructions" rows="3"></textarea>
</div>
<input type="submit" class="btn btn-primary btn-lg" value="Create">
</fieldset>
</form><br>
</div>
</p>
</div>
<div class="form-group">
<input type="text" class="form-control" id="searchBar" placeholder="Search By Name" >
</div>
<div class="nav nav-pills flex-column">
<select class="form-control" name="" id="liquor">
<option class="dropdown-item" value="" >--Search By Ingredient--</option>
<option value="bourbon">Bourbon</option>
<option value="vodka">Vodka</option>
<option value="tequila">Tequila</option>
<option value="rum">Rum</option>
<option value="gin">Gin</option>
<option value="mezcal">Mezcal</option>
</select>
</div>
<div class="card mb-3">
<ul id="cocktail-list" class="wrapper">
</ul>
</div>
<!-- </div> -->
<script src="./src/ingredient.js"></script>
<script src="./src/cocktail.js"></script>
<script src="./src/index.js"></script>
</body>
</html>