-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.97 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.97 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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/index.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" />
<script src="https://kit.fontawesome.com/4ecf49da3e.js" crossorigin="anonymous"></script>
<title>The Fox Blog</title>
</head>
<body>
<header>
<b>The Fox blog</b>
</header>
<div class="wrapper">
<div class="welcome">
<h1>Welcome to the Fox blog!</h1>
<p>
Log in to add and manage your own posts and like others', or choose the visitor option to simply browse the
posts.
</p>
</div>
<div class="login">
<form id="login-form">
<label for="lg-input">Login</label>
<input type="text" id="lg-input" name="lg-input" maxlength="25" size="10" placeholder="Login" type="submit" />
<label for="pw-input">Password</label>
<input
type="password"
id="pw-input"
name="pw-input"
maxlength="25"
size="10"
placeholder="Password"
type="submit"
/>
<div>
<label for="check">
<input class="check" id="check" type="checkbox" />
<i class="fas fa-eye"></i>
<span> Show password </span></label
>
</div>
<input type="submit" value="Log In" />
</form>
<a href="./visitor">Check out the posts as a visitor</a>
<a href="./visitor">Sign up</a>
</div>
</div>
<footer>2020 All foxes reserved</footer>
<script src="./Frontend/bundleLogin.js"></script>
</body>
</html>