25 lines
917 B
HTML
25 lines
917 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Strona logowania</title>
|
|
<link rel="stylesheet" href="/style/login.css" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<div id="login-box">
|
|
<h1>Logowanie</h1>
|
|
<form method="POST" action="/api/login">
|
|
<label for="username">Nazwa użytkownika:</label>
|
|
<input type="text" id="username" name="username" placeholder="Wprowadź nazwę użytkownika">
|
|
|
|
<label for="password">Hasło:</label>
|
|
<input type="password" id="password" name="password" placeholder="Wprowadź hasło">
|
|
|
|
<input type="submit" value="Zaloguj się">
|
|
<h2 color="red">{{incorrect}}<h2>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|