blob: d3e760b5957b0f69e36dfffce27307dfc22922d9 (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Login page</title>
<meta charset="utf-8" />
<style>
body {
text-align: center;
}
input {
margin-bottom: 5px;
}
</style>
</head>
<body>
<h1>Login</h1>
<form action="login.php" method="post">
<input type="text" name="email" placeholder="E-mail"><br>
<input type="password" name="pass" placeholder="Password"><br>
<input type="submit" value="Log in">
</form>
</body>
</html>
|