-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (21 loc) · 842 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
<html>
<head>
<title>
Login Page
</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="avtar.png">
</head>
<body><div class="loginbox">
<img src="css/avtar.png" class="avtar">
<h1>Login Page</h1>
<form action="check.php" method="post">
<p>E-Mail</p>
<input type="email" name="eml" placeholder="Enter Your Email Address" required>
<p>Passowrd</p>
<input type="password" name="pss" placeholder="Enter Passsword" maxlength="10" required>
<input type="submit" value="Login">
<a href="regformhtml.php">Don't Have an Account?</a>
</form></div>
</body>
</html>