Socket
Socket
Sign inDemoInstall

@philnash/web-otp-input

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @philnash/web-otp-input

A web component to make using the WebOTP API declarative


Version published
Weekly downloads
11
decreased by-47.62%
Maintainers
1
Install size
6.87 kB
Created
Weekly downloads
 

Readme

Source

📲 <web-otp-input> 💬

A web component that implements the WebOTP API so you don't have to.

About

Sending one time password codes over SMS is one way to implement two factor authentication in order to improve user account security. But it is a process that adds friction to the sign in experience. The Web OTP allows developers to request access to one time passwords contained within incoming SMS messages and use them, turning SMS two factor authentication into a one click/touch process.

When you include the web-otp-input script on your page, you can wrap a <web-otp-input> custom element around the <input> for your OTP code. If your user is on a device that supports the WebOTP API, then when an SMS message with the verification code arrives, the user will be prompted to enter the code from the SMS with a single permissions acceptance. The custom element handles entering the code into the <input> and automatically submitting the form.

Browser support

This requires support for:

Usage

In order to use the WebOTP API, you first need to update the text of the SMS message you use to send the one time password. You need to add an extra line at the end of the message that looks like this:

@example.com #123456

That is, you need an @ symbol followed by the domain that the user will be signing in to. This helps reduce phishing of two factor authentication messages by only showing this permissions dialog on domains that are also contained within the message like this.

Then you need a space, a # symbol and then the one time code.

Once you have the message set up correctly, you can add the web component to the page.

Installation and import instructions

If you are using npm, you can install the component to your application with:

npm i @philnash/web-otp-input

Then import the component with:

import { WebOTPInput } from "@philnash/web-otp-input";

That will register the <web-otp-input> element for the page.

Alternatively, you can include the script on the page as an ES module, for example with unpkg:

<script type="module" src="https://unpkg.com/@philnash/web-otp-input"></script>

Once that is loaded, it will register the web component.

Using the web component

You should have a form on the page with an input element that is ready for the code. Wrap the <web-otp-input> element around your input element and that is all you need to do.

<form action="/verification" method="POST">
  <div>
    <label for="otp">Enter your code:</label>
    <web-otp-input>
      <input type="text" autocomplete="one-time-code" inputmode="numeric" id="otp" name="otp" />
    </web-otp-input>
  </div>
  <button type="submit">Submit</button>
</form>

When the user comes to this page, if their browser supports it and an OTP code arrives, they will be prompted to read the code from the message and if they approve, the code will be autofilled in the input and the form will be submitted. Slick two factor authentication with one extra web component.

License

MIT (c) 2022 Phil Nash

FAQs

Last updated on 07 Dec 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc