-
Notifications
You must be signed in to change notification settings - Fork 2
/
details.html
95 lines (66 loc) · 2.92 KB
/
details.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>fruhstuck</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Navigation-with-Button.css">
<link rel="stylesheet" href="assets/css/styles.css">
<script src="assets/js/jquery.min.js"></script>
</head>
<body>
<div id="header"><!--Header content will be loaded here--></div>
<!-- =========================================================================== -->
<div class="container">
<div class="details-row">
<div class="column">
<img style="height:300px; width: 500px; border-radius: 15px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); " id="recipe_img" class="thumbnail" src="">
<h4 id="recipe_title" style="padding-left: 250px; margin-top: 10px;"></h4>
</div>
<h4> Ingredients </h4>
<p id="Ingredients"> </p>
<h4> Directions </h4>
<p id="Directions"> </p>
</div>
</div>
<div class="">
<div>
<span>
<button type="button" class="login" id="updateRecipe">
<i class="fa fa-edit"></i> Update Recipe
</button>
<button type="button" class="delete" id="deleteRecipe">
<i class="fa fa-remove"></i> Remove Recipe
</button>
</span>
</div>
<hr>
<form>
<div class="form-group commentForm">
<label for="exampleFormControlTextarea1">
<i class="fa fa-comments"></i> Comment section
</label>
<textarea class="form-control commentSection" id="displayed_comments" rows="3" readonly></textarea>
</div>
<div class="form-group userComment">
<input type="text" class="form-control" id="comment_text" placeholder="Enter your comment here">
</div>
<button id="add-comment">
<i class="fa fa-comments-o"></i> Comment
</button>
</form>
</div>
<hr>
</div>
</div>
<!-- =========================================================================== -->
<div id="footer"><!--Footer content loaded with JQuery + LiveReload--></div>
<script src="assets/js/loadHeaderFooter.js"></script>
<script src="assets/js/showDetails.js"></script>
<script src="assets/js/details.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
</body>
</html>