1
0
mirror of https://github.com/jdan/98.css.git synced 2025-01-17 04:38:30 +01:00

Remove username/password from docs

Password managers do weird things for these :(
This commit is contained in:
Jordan Scales 2024-11-06 08:40:34 -05:00 committed by GitHub
parent ffa29f4cd9
commit 82ba586bc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -413,34 +413,6 @@
<input id="text${getCurrentId()}" disabled type="text" value="Windows Green"/>
</div>
`) %>
<p>
Other types of HTML5 text inputs are also supported.
</p>
<%- example(`
<div class="field-row-stacked" style="width: 200px">
<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"/>
</div>
<div class="field-row-stacked" style="width: 200px">
<label for="text${getNewId()}">Favorite Number</label>
<input id="text${getCurrentId()}" type="number" value="98"/>
</div>
<div class="field-row-stacked" style="width: 200px">
<label for="text${getNewId()}">Search</label>
<input id="text${getCurrentId()}" type="search" value="98 css"/>
</div>
`) %>
</div>