1
0
mirror of https://github.com/jdan/98.css.git synced 2026-05-05 06:01:22 +09:00

Merge pull request #158 from dsgibbons/tel-input-patch

Add input[type="tel"] to format phone inputs
This commit is contained in:
Juani Garay
2023-04-03 00:14:04 -03:00
committed by GitHub
2 changed files with 10 additions and 0 deletions

View File

@@ -414,6 +414,10 @@
<label for="text${getNewId()}">Email</label>
<input id="text${getCurrentId()}" type="email" value="admin@contoso.com"/>
</div>
<div class="field-row-stacked" style="width: 200px">
<label for="text${getNewId()}">Phone</label>
<input id="text${getCurrentId()}" type="tel" value="636-555-3226"/>
</div>
<div class="field-row-stacked" style="width: 200px">
<label for="text${getNewId()}">Password</label>
<input id="text${getCurrentId()}" type="password" value="hunter2"/>