13 lines
403 B
HTML
13 lines
403 B
HTML
<div th:replace="fragments :: base(title='Home', content=~{::content})">
|
|
<div th:fragment="content">
|
|
<p>This system holds <span th:text="${asset_count}">5</span> assets.</p>
|
|
<form action="/search" method="get">
|
|
<label>
|
|
Find an asset via QR code:
|
|
<input type="number" name="qr" placeholder="Find by QR..." />
|
|
</label>
|
|
<input type="submit" value="Search" />
|
|
</form>
|
|
</div>
|
|
</div>
|