-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
27 lines (26 loc) · 851 Bytes
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
<div style="margin-top: 50px; text-align: center;">
<h2>Login Page</h2>
<form action="/action_page.php" method="post">
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
</div>
<div style="margin-top: 10px;">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<div style="margin-top: 20px;">
<button type="submit">Login</button>
</div>
</form>
</div>
</body>
</html>