-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.html
More file actions
32 lines (28 loc) · 907 Bytes
/
Copy pathform.html
File metadata and controls
32 lines (28 loc) · 907 Bytes
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>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Nedge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>login form</title>
</head>
<style>
body{
background-image: url("about.jpg");
}
</style>
<body class="form">
<center class="banner">
<h2>login form</h2>
<form action="" method="post">
<label for="uname">username</label>
<input type="text" placeholder="username" id="uname"><br><br>
<label for="pswd"> password</label>
<input type="password" placeholder=" password" id="pswd"><br><br><br>
<button class="btn"><a href="index.html">login</a></button><br><br>
<a href="index.html">don't have an account?</a>
</form>
</center>
</body>
</html>