| Current Path : /home/rtorresani/www/vendor/magento/module-customer/view/frontend/templates/widget/ |
| Current File : //home/rtorresani/www/vendor/magento/module-customer/view/frontend/templates/widget/telephone.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/** @var \Magento\Customer\Block\Widget\Telephone $block */
?>
<div class="field telephone <?= $block->isRequired() ? 'required' : '' ?>">
<label for="telephone" class="label">
<span>
<?= $block->escapeHtml(__('Phone Number')) ?>
</span>
</label>
<div class="control">
<input type="tel"
name="telephone"
id="telephone"
value="<?= $block->escapeHtmlAttr($block->getTelephone()) ?>"
title="<?= $block->escapeHtmlAttr(__('Phone Number')) ?>"
class="input-text <?= $block->escapeHtmlAttr(
$block->getAttributeValidationClass('telephone')
) ?>"
>
</div>
</div>