30 CSS Login Forms27 / 30

CSS + JSMIT licensed

Pin Pad

A numeric PIN entry for kiosks, POS terminals and mobile web: a rigid 3×4 keypad of big round touch buttons feeding a row of masked dots, with a satisfying press state and a delete key.

Published Updated

Live Demo
Try it

The code

<section class="lf-27">
  <form class="lf-27__card" novalidate>
    <h1 class="lf-27__h">Enter your PIN</h1>
    <div class="lf-27__dots" aria-hidden="true"><span></span><span></span><span></span><span></span></div>
    <input class="lf-27__value" type="hidden" name="pin">
    <div class="lf-27__pad" role="group" aria-label="PIN keypad">
      <button class="lf-27__key" type="button" data-d="1">1</button>
      <button class="lf-27__key" type="button" data-d="2">2</button>
      <button class="lf-27__key" type="button" data-d="3">3</button>
      <button class="lf-27__key" type="button" data-d="4">4</button>
      <button class="lf-27__key" type="button" data-d="5">5</button>
      <button class="lf-27__key" type="button" data-d="6">6</button>
      <button class="lf-27__key" type="button" data-d="7">7</button>
      <button class="lf-27__key" type="button" data-d="8">8</button>
      <button class="lf-27__key" type="button" data-d="9">9</button>
      <span class="lf-27__spacer" aria-hidden="true"></span>
      <button class="lf-27__key" type="button" data-d="0">0</button>
      <button class="lf-27__key lf-27__key--del" type="button" data-del aria-label="Delete last digit">⌫</button>
    </div>
  </form>
</section>
.lf-27,
.lf-27 *,
.lf-27 *::before,
.lf-27 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lf-27 {
  --accent: oklch(0.6 0.16 265);
  --key: 64px;
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  background: #12151d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lf-27__card {
  width: min(320px,100%);
  background: #1a1f2b;
  border: 1px solid #262c3a;
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 30px 70px -44px #000;
}

.lf-27__h {
  font-size: 19px;
  font-weight: 600;
  color: #e8ebf3;
  margin-bottom: 20px;
}

.lf-27__dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.lf-27__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #3a4256;
  background: transparent;
  transition: background .18s,border-color .18s,transform .18s;
}

.lf-27__dots span.is-on {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.lf-27__pad {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  justify-items: center;
}

.lf-27__key {
  width: var(--key);
  height: var(--key);
  border-radius: 50%;
  border: 1.5px solid #2c3342;
  cursor: pointer;
  background: #212635;
  color: #e8ebf3;
  font-size: 24px;
  font-weight: 500;
  transition: background .14s,transform .1s,border-color .14s;
}

.lf-27__key:hover {
  background: #283044;
  border-color: #3a4256;
}

.lf-27__key:active {
  transform: scale(.9);
  background: oklch(0.6 0.16 265/.25);
  border-color: var(--accent);
}

.lf-27__key:focus-visible {
  outline: 3px solid oklch(0.6 0.16 265/.6);
  outline-offset: 2px;
}

.lf-27__key--del {
  font-size: 20px;
  color: #98a0b4;
}

.lf-27__spacer {
  width: var(--key);
  height: var(--key);
}

@media (prefers-reduced-motion: reduce) {
  .lf-27 * {
    transition: none!important;
  }
}
const sec = document.querySelector('.lf-27');
const dots = [...sec.querySelectorAll('.lf-27__dots span')];
const value = sec.querySelector('.lf-27__value');
const MAX = dots.length;
let pin = '';
const render = () => dots.forEach((d, i) => d.classList.toggle('is-on', i < pin.length));
sec.querySelectorAll('.lf-27__key').forEach((key) => {
  key.addEventListener('click', () => {
    if (key.hasAttribute('data-del')) { pin = pin.slice(0, -1); }
    else if (pin.length < MAX) { pin += key.dataset.d; }
    value.value = pin;
    render();
    if (pin.length === MAX) setTimeout(() => { pin = ''; value.value = ''; render(); }, 500);
  });
});
Paste this into ChatGPT, Claude, Cursor, or any coding assistant. The block below is pre-framed with everything the AI needs to integrate this demo into your project — markup, styles, scoping notes, and the source URL. Hit Copy and paste straight into your chat.
Here's a working CSS Login Form from CodeFronts. Use it as-is or adapt to your framework. All classes are scoped under a unique prefix so the code won't collide with your existing styles. MIT licensed.
Demo: Pin Pad
Source: https://codefronts.com/components/css-login-forms/pin-pad/

A numeric PIN entry for kiosks, POS terminals and mobile web: a rigid 3×4 keypad of big round touch buttons feeding a row of masked dots, with a satisfying press state and a delete key.
## HTML
```html
<section class="lf-27">
  <form class="lf-27__card" novalidate>
    <h1 class="lf-27__h">Enter your PIN</h1>
    <div class="lf-27__dots" aria-hidden="true"><span></span><span></span><span></span><span></span></div>
    <input class="lf-27__value" type="hidden" name="pin">
    <div class="lf-27__pad" role="group" aria-label="PIN keypad">
      <button class="lf-27__key" type="button" data-d="1">1</button>
      <button class="lf-27__key" type="button" data-d="2">2</button>
      <button class="lf-27__key" type="button" data-d="3">3</button>
      <button class="lf-27__key" type="button" data-d="4">4</button>
      <button class="lf-27__key" type="button" data-d="5">5</button>
      <button class="lf-27__key" type="button" data-d="6">6</button>
      <button class="lf-27__key" type="button" data-d="7">7</button>
      <button class="lf-27__key" type="button" data-d="8">8</button>
      <button class="lf-27__key" type="button" data-d="9">9</button>
      <span class="lf-27__spacer" aria-hidden="true"></span>
      <button class="lf-27__key" type="button" data-d="0">0</button>
      <button class="lf-27__key lf-27__key--del" type="button" data-del aria-label="Delete last digit">⌫</button>
    </div>
  </form>
</section>
```
## CSS
```css
.lf-27,
.lf-27 *,
.lf-27 *::before,
.lf-27 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lf-27 {
  --accent: oklch(0.6 0.16 265);
  --key: 64px;
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  background: #12151d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lf-27__card {
  width: min(320px,100%);
  background: #1a1f2b;
  border: 1px solid #262c3a;
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 30px 70px -44px #000;
}

.lf-27__h {
  font-size: 19px;
  font-weight: 600;
  color: #e8ebf3;
  margin-bottom: 20px;
}

.lf-27__dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.lf-27__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #3a4256;
  background: transparent;
  transition: background .18s,border-color .18s,transform .18s;
}

.lf-27__dots span.is-on {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.lf-27__pad {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  justify-items: center;
}

.lf-27__key {
  width: var(--key);
  height: var(--key);
  border-radius: 50%;
  border: 1.5px solid #2c3342;
  cursor: pointer;
  background: #212635;
  color: #e8ebf3;
  font-size: 24px;
  font-weight: 500;
  transition: background .14s,transform .1s,border-color .14s;
}

.lf-27__key:hover {
  background: #283044;
  border-color: #3a4256;
}

.lf-27__key:active {
  transform: scale(.9);
  background: oklch(0.6 0.16 265/.25);
  border-color: var(--accent);
}

.lf-27__key:focus-visible {
  outline: 3px solid oklch(0.6 0.16 265/.6);
  outline-offset: 2px;
}

.lf-27__key--del {
  font-size: 20px;
  color: #98a0b4;
}

.lf-27__spacer {
  width: var(--key);
  height: var(--key);
}

@media (prefers-reduced-motion: reduce) {
  .lf-27 * {
    transition: none!important;
  }
}
```

## JavaScript
```js
const sec = document.querySelector('.lf-27');
const dots = [...sec.querySelectorAll('.lf-27__dots span')];
const value = sec.querySelector('.lf-27__value');
const MAX = dots.length;
let pin = '';
const render = () => dots.forEach((d, i) => d.classList.toggle('is-on', i < pin.length));
sec.querySelectorAll('.lf-27__key').forEach((key) => {
  key.addEventListener('click', () => {
    if (key.hasAttribute('data-del')) { pin = pin.slice(0, -1); }
    else if (pin.length < MAX) { pin += key.dataset.d; }
    value.value = pin;
    render();
    if (pin.length === MAX) setTimeout(() => { pin = ''; value.value = ''; render(); }, 500);
  });
});
```

How this works

The keypad is a strict CSS Grid (grid-template-columns: repeat(3,1fr); gap: 12px) of circular buttons sized well above the 44px tap minimum. A row of dots above shows entry progress, filling as digits are pressed.

A small script appends the tapped digit to a hidden field and fills the dots, with a delete key to correct and auto-clear on completion. Every key is a real <button> so it's keyboard-operable and screen-reader labelled; the active :active state scales down for tactile feedback. The dots and buttons never reflow because press feedback is transform only.

The assembled PIN lives in a real form field so it submits normally.

Make it yours

  • Change PIN length by adding dots and updating the script's max.
  • Recolour keys / filled dots from --accent.
  • Resize keys via --key (kept ≥56px for touch).
  • Add biometric or an SOS key in the empty grid cell.

Gotchas — read before shipping

  • Keep keys ≥44px (this uses 64px) for reliable kiosk / POS tapping.
  • Give each key a real accessible label and keyboard support — don't build it from divs.
  • Provide a delete key; forcing a full re-entry on a mistyped PIN frustrates users.

Browser support

ChromeSafariFirefoxEdge
111+15.4+113+111+

Floor set by oklch() as this demo is written. The core technique itself goes back further — Chrome 57+.

Keypad entry needs JS; the 3×4 grid, round keys and press states are CSS.

Techniques used in this demo

Search CodeFronts

Loading…