forked from emilevs/label_printer
42 lines
806 B
HTML
42 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Image Upload</title>
|
|
|
|
<style>
|
|
.container {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
.box {
|
|
flex: 1;
|
|
background-color: lightgray;
|
|
text-align: center;
|
|
margin: 1px;
|
|
}
|
|
</style>
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<a href="text" class="box">
|
|
<div>Text</div>
|
|
</a>
|
|
<a href="image" class="box">
|
|
<div>Image</div>
|
|
</a>
|
|
<div class="box">QR</div>
|
|
<div class="box">Barcode</div>
|
|
</div>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|
|
|