12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Login</title>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
- </head>
- <body class="bg-light">
- <div class="container d-flex justify-content-center align-items-center vh-100">
- <div class="card p-4 shadow-lg" style="width: 100%; max-width: 400px;">
- <h2 class="text-center mb-4">Login</h2>
- <form action="/login" method="post">
- <div class="mb-3">
- <label for="name" class="form-label">Name</label>
- <input type="name" class="form-control" id="name" name="name" required>
- </div>
- <div class="mb-3">
- <label for="password" class="form-label">Password</label>
- <input type="password" class="form-control" id="password" name="password" required>
- </div>
- <button type="submit" class="btn btn-primary w-100">Login</button>
- </form>
- </div>
- </div>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
- </body>
- </html>
|