This repository has been archived on 2025-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vwa_project/web/templates/login.html

25 lines
983 B
HTML

<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Přihlášení</title>
<link rel="icon" href="{{url_for('static', filename='img/logo.webp')}}" type="image/x-icon">
<link rel="stylesheet" href="{{url_for('static', filename='css/style.css')}}">
</head>
<body>
<div class="form-container">
<h2> Přihlášení </h2>
<form method="POST" action="{{ url_for('login') }}">
<label for="username">Uživatelské jméno: <span class="required">*</span></label>
<input type="text" id="username" name="username" required>
<label for="password">Heslo: <span class="required">*</span></label>
<input type="password" id="password" name="password" required>
<button type="submit" class="button">Přihlásit se</button>
</form>
</div>
<div style="text-align: center;">
<a href="{{ url_for('home') }}" class="button">Domů</a>
</div>
</body>
</html>