Test_DB / templates /index.html
Antoni09's picture
Update templates/index.html
74534a3 verified
raw
history blame
6.92 kB
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Generator faktur</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<main class="container">
<h1>Generator faktur</h1>
<section id="setup-section" class="panel hidden">
<h2>Konfiguracja danych firmy</h2>
<form id="setup-form" class="form">
<div class="field-grid">
<label>
Nazwa firmy
<input type="text" name="company_name" required>
</label>
<label>
Imie i nazwisko wlasciciela
<input type="text" name="owner_name" required>
</label>
<label>
Ulica i numer
<input type="text" name="address_line" required>
</label>
<label>
Kod pocztowy
<input type="text" name="postal_code" required>
</label>
<label>
Miejscowosc
<input type="text" name="city" required>
</label>
<label>
NIP
<input type="text" name="tax_id" required>
</label>
<label>
Numer konta bankowego
<input type="text" name="bank_account" required>
</label>
<label>
Haslo
<input type="password" name="password" required>
</label>
<label>
Powtorz haslo
<input type="password" name="confirm_password" required>
</label>
</div>
<button type="submit">Zapisz dane</button>
<p class="hint">Dane przechowywane sa na serwerze lokalnym.</p>
</form>
<p id="setup-feedback" class="feedback"></p>
</section>
<section id="login-section" class="panel hidden">
<h2>Logowanie</h2>
<form id="login-form" class="form">
<label>
Haslo
<input type="password" name="password" required>
</label>
<button type="submit">Zaloguj</button>
</form>
<p id="login-feedback" class="feedback"></p>
</section>
<section id="app-section" class="panel hidden">
<header class="invoice-header">
<h2>Panel faktur</h2>
<button id="logout-button" type="button" class="link-button">Wyloguj</button>
</header>
<section class="business-section">
<div class="business-section-header">
<h3>Dane sprzedawcy</h3>
<button id="toggle-business-form" type="button" class="link-button">Edytuj dane</button>
</div>
<div id="business-display" class="business-display"></div>
<form id="business-form" class="form hidden">
<div class="field-grid">
<label>
Nazwa firmy
<input type="text" name="company_name" required>
</label>
<label>
Imie i nazwisko wlasciciela
<input type="text" name="owner_name" required>
</label>
<label>
Ulica i numer
<input type="text" name="address_line" required>
</label>
<label>
Kod pocztowy
<input type="text" name="postal_code" required>
</label>
<label>
Miejscowosc
<input type="text" name="city" required>
</label>
<label>
NIP
<input type="text" name="tax_id" required>
</label>
<label>
Numer konta bankowego
<input type="text" name="bank_account" required>
</label>
</div>
<div class="form-actions">
<button type="submit">Zapisz</button>
<button id="cancel-business-update" type="button" class="link-button">Anuluj</button>
</div>
<p id="business-feedback" class="feedback"></p>
</form>
</section>
<form id="invoice-form" class="form">
<fieldset>
<legend>Informacje o fakturze</legend>
<label>
Data sprzedazy / wykonania uslugi
<input type="date" name="saleDate">
</label>
</fieldset>
<fieldset>
<legend>Dane nabywcy</legend>
<div class="field-grid">
<label>
Nazwa / Imie i nazwisko
<input type="text" name="clientName">
</label>
<label>
NIP
<input type="text" name="clientTaxId">
</label>
<label>
Ulica i numer
<input type="text" name="clientAddress">
</label>
<label>
Kod pocztowy
<input type="text" name="clientPostalCode">
</label>
<label>
Miejscowosc
<input type="text" name="clientCity">
</label>
</div>
</fieldset>
<section class="items-section">
<header class="items-header">
<h3>Pozycje faktury</h3>
<button type="button" id="add-item-button">Dodaj pozycje</button>
</header>
<div class="items-table-wrapper">
<table class="items-table">
<thead>
<tr>
<th>Nazwa towaru/uslugi</th>
<th>Ilosc</th>
<th>Cena jedn. brutto (PLN)</th>
<th>Stawka VAT</th>
<th>Wartosc brutto (PLN)</th>
<th></th>
</tr>
</thead>
<tbody id="items-body"></tbody>
</table>
</div>
</section>
<div id="totals-container" class="totals">
<span id="total-net">Suma netto: 0.00 PLN</span>
<span id="total-vat">Kwota VAT: 0.00 PLN</span>
<span id="total-gross">Suma brutto: 0.00 PLN</span>
</div>
<section id="rate-summary" class="rate-summary"></section>
<div id="exemption-note-wrapper" class="hidden">
<label>
Podstawa prawna zwolnienia (stosowana dla pozycji ZW)
<textarea id="exemption-note" rows="3" placeholder="np. Art. 43 ust. 1 pkt 19 ustawy o VAT"></textarea>
</label>
</div>
<button type="submit">Generuj fakture</button>
</form>
<section id="invoice-result" class="panel hidden">
<h3>Podglad faktury</h3>
<div id="invoice-output" class="invoice-preview"></div>
<button id="download-button" type="button">Pobierz jako plik PDF</button>
</section>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js" defer></script>
<script src="{{ url_for('static', filename='js/main.js') }}" defer></script>
</body>
</html>