Giter Club home page Giter Club logo

otp-input's Introduction

Unstyled OTP Input

A JavaScript library that provides a user-friendly way to input OTP (One-Time Password) codes. It can be used in various JavaScript frameworks or environments to enhance the OTP input experience.

Demo

Installation

You can install via npm:

npm install @rashidpathiiyil/otp-input

Usage

Importing and Setup

To use @rashidpathiiyil/otp-input in your JavaScript application, import it and initialize it with the appropriate parameters. Below is an example setup:

import OTP from '@rashidpathiyil/otp-input';

const initOTPInput = new OTP(
  '.otp-input-container',
  '.otp-result-input'
);

HTML Structure

Define the HTML structure for the OTP input component. Below is an example:

<div class="otp-input-container">
  <!-- Input fields for OTP -->
  <input type="text" />
  <!-- Add more input fields as required -->
</div>

<!-- Display OTP result -->
<input class="otp-result-input" type="text" />

Example

Below is an example of how you can use it in your Vue/Nuxt application:

<script setup>
import { onMounted, ref } from 'vue';
import OTP from '@rashidpathiyil/otp-input';
const result = ref(); 

onMounted(() => {
  const initOTPInput = new OTP(
    '.otp-input-container',
    '.otp-result-input',
    result
  );
});
</script>
<template>
  <div class="otp-input-container">
    <!-- Input fields for OTP -->
    <input type="text" />
    <!-- Add more input fields as required -->
  </div>

  <!-- Display OTP result -->
  <input class="otp-result-input" type="text" />
  <!-- Display OTP using ref -->
  {{ result }}
</template>

You can try out a Vue.js demo on StackBlitz:

Vue.js Demo - @rashidpathiiyil/otp-input

Support and Contributions

For support or to contribute to the development of @rashidpathiiyil/otp-input, please visit the GitHub repository: https://github.com/rashidpathiiyil/otp-input

otp-input's People

Contributors

rashidpathiyil avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.