-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
16 lines (16 loc) · 827 Bytes
/
index.php
File metadata and controls
16 lines (16 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body style="font-family: Arial, sans-serif; text-align: center; margin-top: 50px;">
<h2 style="color: #4CAF50;">Login Page</h2>
<form method="POST" action="login.php" style="display: inline-block; padding: 20px; border: 1px solid #ddd; border-radius: 5px;">
<label>Username:</label><br>
<input type="text" name="username" required style="margin-bottom: 10px; padding: 8px; width: 100%;"><br>
<label>Password:</label><br>
<input type="password" name="password" required style="margin-bottom: 10px; padding: 8px; width: 100%;"><br>
<button type="submit" style="padding: 10px 20px; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer;">Login</button>
</form>
</body>
</html>