-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisitor.html
More file actions
41 lines (41 loc) · 1.46 KB
/
visitor.html
File metadata and controls
41 lines (41 loc) · 1.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/visitor.css" />
<link href="link" rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet" />
<link rel="icon" href="./assets/fox.svg" type="image/x-icon" />
<title>The Fox Blog</title>
</head>
<body>
<header>
<b> The Fox blog</b>
</header>
<div class="wrapper">
<div class="instructions">
<h2>Welcome Visitor!</h2>
<p>Look around in the posts, or go back to the login page here:</p>
<a href="./">Back to login</a>
</div>
<div class="posted-main">
<div class="post-head">
<h2>Posts</h2>
<form class="sort-form">
<label for="sort-select">Sort by:</label>
<select name="select" id="sort-select">
<option value="timestamp 1">Latest</option>
<option value="timestamp 0">Oldest</option>
<option value="score 1">Best</option>
<option value="score 0">Worst</option>
</select>
</form>
</div>
<div class="posted-body"></div>
</div>
</div>
<script type="module" src="./Frontend/bundleVisitor.js"></script>
</body>
</html>