New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tjb-auth-verify

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tjb-auth-verify

awesome auth-verify webcomponent

  • 0.0.11
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

tjb-auth-verify

Webcomponents verify form field to verify with given credentials

Example

https://tjb-webcomponents.github.io/tjb-auth-verify/

Add to project

You might want to use a Polyfill for WebComponent:

<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.2.0/webcomponents-lite.js"></script>

Include via HTML

Include it:

<script
  src="https://tjb-webcomponents.github.io/tjb-auth-verify/tjb-auth-verify.min.js"
  type="module"
></script>

Include via JavaScript

import 'https://tjb-webcomponents.github.io/tjb-auth-verify/tjb-auth-verify.min.js'

Include via NPM

Console:

npm i -S tjb-auth-verify

Then in your code:

import 'tjb-auth-verify';

Useage

<tjb-auth-verify></tjb-auth-verify>

Attributes

Example:

<tjb-auth-verify
  postbody="{ 'foo': 'bar' }"
  posturl="https://jsonplaceholder.typicode.com/users"
  mailurl="https://jsonplaceholder.typicode.com/users"
  email="foo@bar.baz"
>
  <input value="verify" type="submit" slot="submit" />
</tjb-auth-verify>

All attributes:

attributeexampledescription
postbodypostbody="{ 'foo': 'bar' }"JSON Object that will be added to the remote verify POSt call.
posturlposturl="https://jsonplaceholder.typicode.com/users"URL that will be called with a POST call and credentials as application/json body
mailurlmailurl="https://jsonplaceholder.typicode.com/users"URL that will be called with a POST call as application/json body. The component will send out a POST on initialization
emailemail="foo@bar.baz"E-Mail that will be used for calls

Methods

methodexampledescription
error.error()Sets the widget in an error state
success.success()Sets the widget in a success state

Events

namedetailsdescription
redirect- href (@String)
- target (@string)
triggered when user clicks on links. For instance verify link or forgor password link.
success- resp (@Object)when the verify (post) call returned a success message
success-email- resp (@Object)when the email call returned a success message
error- resp (@Object)when the verify (post) call returned an error message
sendmail- body (@Object)triggered on sendmail request. Hold the body of the potential request (email)
verify- body (@Object)triggered on verification request. Hold the body of the potential request (email, key)

You can listen to events like so: tjbVerify.addEventListener('verify/success', (e) => { /* do stuff */ }).

Styling

Default public values:

:host {
  --verify-color-info: grey;

  /* notify */
  --verify-notify-background-error: #fa354c;
  --verify-notify-background-success: limegreen;
  --verify-notify-color-error: white;
  --verify-notify-color-success: white;
  --verify-notify-margin: -55px -40px 20px;
  --verify-notify-padding: 15px 15px 15px 35px;

  /* input */
  --verify-input-color-error: #fa354c;
  --verify-input-color-success: limegreen;
  --verify-input-padding: 10px;
  --verify-input-margin: 0 0 30px 0;
  --verify-input-width: 100%;
  --verify-input-border: 1px solid transparent;
  --verify-input-border-bottom: 1px solid lightgrey;
  --verify-input-border-radius: 0;
  --verify-input-font-size: 1rem;
  --verify-input-info-color: grey;
  --verify-input-info-font-size: 0.8rem;
  --verify-input-label-margin: 0 0 5px 0;

  background: #fff;
  display: block;
  max-width: 350px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding: 55px 40px 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

These can be overwritten easily by targetting the element. Example:

tjb-auth-verify {
  --veridy-input-border: 1px solid lightgrey;
}

Enjoy

Typewriter Gif

Keywords

FAQs

Package last updated on 13 Jan 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc