-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.html
More file actions
35 lines (31 loc) · 1011 Bytes
/
feed.html
File metadata and controls
35 lines (31 loc) · 1011 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>APParel</title>
<link rel="stylesheet" type="text/css" href="/style/my_style.css">
<link href="https://fonts.googleapis.com/css?family=Allerta+Stencil|Baloo+Tamma|Carter+One|Libre+Franklin|Life+Savers|Pacifico&display=swap" rel="stylesheet">
</head>
<body>
<div id="header">
<h1>APParel: Personal Feed</h1>
</div>
<br>
<br>
<!-- ITEM PROFILE -->
<img src = "{{image_url}}" style="max-width: 40%; max-height: 40%">
<p>{{item_description}}</p>
<div class="Like">
<form action="/like" method="post">
<input type="hidden" name="item_id" value= "{{item_id}}">
<input type="submit" value="Like!" id="submit" style="font-family: Carter One"/>
</form>
</div>
<div class="Nope">
<form action="/">
<input type="submit" value="Nope!" id="submit2" style="font-family: Carter One"/>
</form>
</div>
</body>
<script src="/js/script.js"></script>
</html>