Zdalne-systemy-z-kit-uVPN/templates/login.html

25 lines
917 B
HTML
Raw Normal View History

2023-04-13 09:52:51 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Strona logowania</title>
2023-04-24 08:22:17 +00:00
<link rel="stylesheet" href="/style/login.css" />
2023-04-19 11:03:05 +00:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
2023-04-13 09:52:51 +00:00
</head>
<body>
<div id="login-box">
<h1>Logowanie</h1>
2023-04-13 10:25:01 +00:00
<form method="POST" action="/api/login">
2023-04-13 09:52:51 +00:00
<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ę">
2023-04-13 10:06:23 +00:00
<h2 color="red">{{incorrect}}<h2>
2023-04-13 09:52:51 +00:00
</form>
</div>
</body>
</html>