Skip to content

Instantly share code, notes, and snippets.

@javimata
Created December 1, 2020 22:54
Show Gist options
  • Save javimata/a23a85be4a060cc557b8181139fc6436 to your computer and use it in GitHub Desktop.
Save javimata/a23a85be4a060cc557b8181139fc6436 to your computer and use it in GitHub Desktop.
{% if product.type == "Celular" %}
<div class="product-form__controls-group">
<div class="product-form__item">
<label for="texto">Graba tu nombre</label>
<input type="text" id="texto" name="properties[Texto]">
</div>
</div>
{% else %}
<div class="product-form__controls-group">
<div class="product-form__item">
<label for="archivo">Envía tu diseño</label>
<input id="archivo" type="file" name="properties[Archivo]" accept="image/*,.pdf" />
</div>
</div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment