Skip to content

Instantly share code, notes, and snippets.

View nraloux's full-sized avatar

Raloux Nouebissie nraloux

View GitHub Profile
@nraloux
nraloux / daily-ui-002-credit-card-checkout.markdown
Created April 14, 2020 22:06
Daily UI #002: Credit Card Checkout
@nraloux
nraloux / e-commerce-product-page.markdown
Last active April 15, 2020 21:01
E-commerce Product Page

E-commerce Product Page list / grid option

This is a UX design for a product page and again minimalism is key here so that the focus is all on the product images.

A Pen by Sofiya Shakeel on CodePen.

License.

@nraloux
nraloux / index.html
Created May 9, 2020 12:54
Simple Password Validator
<div>
<input id="passInput" type="password" placeholder="Enter password">
<p>
Password should contain at least
<span id="length" class="invalid">8 characters</span>,
<span id="capital" class="invalid">1 upper case letter</span>,
<span id="letter" class="invalid">1 lower case letter</span>,
<span id="number" class="invalid">1 number</span>, and
<span id="character" class="invalid">1 special character</span>
</p>