35 lines
2.4 KiB
HTML
35 lines
2.4 KiB
HTML
<template name="LabelMaker">
|
|
<div id="labelMaker">
|
|
<div class="labelOptions">
|
|
<div>Label Size</div>
|
|
<div><label for="labelWidth">Width (mm):</label> <input disabled type="number" name="labelWidth" class="labelWidth input" step="0.25" value="{{labelWidth}}"/></div>
|
|
<div><label for="labelHeight">Height (mm):</label> <input disabled type="number" name="labelHeight" class="labelHeight input" step="0.25" value="{{labelHeight}}"/></div>
|
|
<div class="radioGroup"><input type="radio" name="labelType" value="oz8" checked><label for="labelType">8oz Label</label> <input type="radio" name="labelType" value="barcode"><label for="labelType">Barcode Only</label></div>
|
|
|
|
<div>Label Contents</div>
|
|
<div class="labelTextControls"><label for="title1">Title:</label> <input type="text" name="title1" class="title1 input" value="{{title1}}"/></div>
|
|
<div class="labelTextControls"><label for="title2">Title:</label> <input type="text" name="title2" class="title2 input" value="{{title2}}"/></div>
|
|
<div class="labelTextControls"><label for="ingredients" style="vertical-align: top">Ingredients:</label> <textarea name="ingredients" class="ingredients">{{ingredients}}</textarea></div>
|
|
<div class="labelTextControls"><label for="date">Date:</label> <input type="number" name="date" class="date input" value="{{date}}"/></div>
|
|
<div><button name="print" class="print">Print</button></div>
|
|
<div><button name="preview" class="preview">Preview</button></div>
|
|
</div>
|
|
<div class="labelBackground">
|
|
{{>PrintLabel vars=printLabelVars}}
|
|
</div>
|
|
<!-- <div class="labelContainer">-->
|
|
<!-- <div class='label'>-->
|
|
<!-- <div id="qrcode" class="qrcode"></div>-->
|
|
<!-- <img class='labelLogo' alt='logo' src='/images/3x2 Label Logo BW.svg'/>-->
|
|
<!-- <div class='title1 labelText'>{{title1}}</div>-->
|
|
<!-- <div class='title2 labelText'>{{title2}}</div>-->
|
|
<!-- <div class='ingredients labelText'><span class='ingredientsPrefix'>Ingredients</span>: {{ingredients}}</div>-->
|
|
<!-- <div class='ingredientsEnding labelText'>*<span style='font-style: oblique'>grown by us</span> <span class='size'></span> FD1951 (<span class="date">{{date}}</span>)</div>-->
|
|
<!-- <div class='instructions labelText'>Refrigerate after opening; return jar when done</div>-->
|
|
<!-- <div class='address labelText'>18601 Hwy 128, Yorkville, CA 95494</div>-->
|
|
<!-- <div class='website labelText'>www.PetitTeton.com</div>-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
</div>
|
|
</template>
|