-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
48 lines (43 loc) · 1.42 KB
/
admin.html
File metadata and controls
48 lines (43 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="JRS Blog">
<meta name="keywords" content="JRS Coding School, blog, night class, evenings">
<!-- My stylesheets -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" media="screen and (min-width: 668px)" href="css/tablet.css">
<link rel="stylesheet" media="screen and (min-width: 892px)" href="css/desktop.css">
<title>In the Loop</title>
</head>
<body>
<!-- Header -->
<header id="header">
<h1><a href="index.html">In the Loop</a></h1>
<nav class="navbar-container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="admin.html" class="sign-in-link">Login</a></li>
</ul>
</nav>
</header>
<!-- Admin Section -->
<section id="admin-container">
<form class="form-group">
<div>
<label for="username">Userame</label>
<input type="text" name="Username" id="username">
</div>
<div>
<label for="password">Password</label>
<input type="password" name="password" id="password">
</div>
<button type="submit" class="sign-in-btn">Sign In</button>
</form>
</section>
</body>
</html>