forked from lewis-810/lewis-810.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 973 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Lewis 810</title>
<meta charset="utf-8" />
<meta name="author" content="Ruida Zeng">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 class="logo"><a href="/"><img src="https://www.fbi.gov/image-repository/fbi-seal.jpg/@@images/ebd53701-8a4e-4e82-a36f-e0e853ae8512.jpeg" width="150" height="150" alt="Lewis 810"></a></h1>
<h1>Login</h1>
<!--action - where the form send data to -->
<!-- method - what HTTP method (get/post) -->
<form>
<label for="username">Username:</label>
<input id="username" type="text" placeholder="username" required>
<label for="password">Password:</label>
<input id="password" type="password" placeholder="password" required>
<input type="submit">
</form>
<p>
New to Lewis 810?
<a href="register.html">Sign up now</a>
</p>
</body>
</html>