62 lines
2.1 KiB
HTML
62 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>VAT Company Lookup</title>
|
||
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<h1>VAT Company Lookup</h1>
|
||
|
|
|
||
|
|
<div class="form-grid">
|
||
|
|
<div class="row">
|
||
|
|
<label for="country">Country / VAT</label>
|
||
|
|
<select id="country">
|
||
|
|
<option value="BE">Belgium</option>
|
||
|
|
<option value="HR">Croatia</option>
|
||
|
|
<option value="PL">Poland</option>
|
||
|
|
</select>
|
||
|
|
<input id="vat_number" type="text" placeholder="VAT number">
|
||
|
|
<button type="button" onclick="searchCompany()">Search</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<label for="company_name">Company</label>
|
||
|
|
<input id="company_name" type="text" class="span-3">
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<label for="street">Street</label>
|
||
|
|
<input id="street" type="text" class="span-3">
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<label for="zip">ZIP / City</label>
|
||
|
|
<input id="zip" type="text" placeholder="ZIP">
|
||
|
|
<input id="city" type="text" placeholder="City">
|
||
|
|
<div></div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<label for="email">Email</label>
|
||
|
|
<input id="email" type="email" placeholder="example@company.com" class="span-3">
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<label for="phone">Phone</label>
|
||
|
|
<input id="phone" type="text" placeholder="+32 123 45 67 89" class="span-3">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="button-row">
|
||
|
|
<button type="button" onclick="saveData()">Save</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="status" class="status">Ready.</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script src="{{ url_for('static', filename='app.js') }}"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|