-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview_image.html
40 lines (37 loc) · 1.81 KB
/
view_image.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>View Image</title>
<link rel="stylesheet" href="view_image.css" type="text/css" />
</head>
<body>
<div class="navbar">
<!-- Returns to previous page -->
<button onClick="location.replace('homepage.html');" class="navbar_content" style="float:left;">Home</button>
<button onClick="location.replace('image_list.html');" class="navbar_content" style="float:left;">Go Back</button>
<input type="button" id="lookup-button" value="Search" class="navbar_content"> <!-- Calls a search on all user entered tags -->
<input type="text" name="Topic" id="topic-id-selection" placeholder="Enter tags separated by spaces" class="navbar_content"style="width:40%;"> <!-- Add to user tags when enter is clicked -->
<!-- List of user entered tags -->
<p class="navbar_content"><b>Tags:</b></p>
<!-- Submit comment -->
<input type="button" class="navbar_content" value="Post Comment" id="post-comment-button" style="float: right">
<!-- Enter the comment -->
<input type="text" class="navbar_content" name="Post-Comment-Comment" id="post-comment-comment" placeholder="Enter comment..." style="float:right;width:18%;">
<!-- Enter the comment -->
<input type="text" class="navbar_content" name="Post-Comment-Name" id="post-comment-name" placeholder="Enter name..." style="float:right;width:9%;">
</div>
<div class="main_area">
<!-- Image -->
<div class="image">
<img id="page_image" src="" alt="">
</div>
<!-- Comments -->
<div class="comments">
<p></p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="view_image.js"></script>
</body>
</html>