npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@reect-login-page/page4

v1.0.7

Published

Some `react` login pages, which can be used quickly after installation.

Downloads

160

Readme

@reect-login-page/page4

Buy me a coffee npm version Downloads

Install

$ npm install @reect-login-page/page4 --save

Usage

import React from 'react';
import Login from '@reect-login-page/page4';

const Demo = () => (
  <Login style={{ height: 580 }}>
    <Login.Password>
      <div>xx</div>
    </Login.Password>
  </Login>
);

export default Demo;

Modify Controls

import React from 'react';
import LoginPage, { Email, Password, Title, Submit, Logo, Reset } from '@reect-login-page/page4';
import LoginLogo from 'react-login-page/logo';

const styles = { height: 580 };

const Demo = () => (
  <div style={styles}>
    <LoginPage>
      <Email name="userUserName" />
      <Password placeholder="请输入密码" label="密码" name="userPassword" />
      <Submit>提交</Submit>
      <Reset disabled>重置</Reset>
      <Title>欢迎回来! 登录您的帐户以查看今天的客户:</Title>
      <Logo>
        <LoginLogo height={31} />
      </Logo>
    </LoginPage>
  </div>
);

export default Demo;

Hide Controls

Use visible={false} to hide controls.

import React from 'react';
import LoginPage, { Reset, Title, Logo, Password } from '@reect-login-page/page4';
import LoginLogo from 'react-login-page/logo-rect';
const Demo = () => (
  <LoginPage style={{ height: 580 }}>
    <Logo>
      <LoginLogo />
    </Logo>
    <Title />
    <Password visible={false} />
  </LoginPage>
);

export default Demo;

Add content after the button

import React from 'react';
import LoginPage, { Reset, Logo, Email, Footer, Password, Input } from '@reect-login-page/page4';
import LoginLogo from 'react-login-page/logo-rect';

const Demo = () => (
  <LoginPage style={{ height: 750 }}>
    <Logo>
      <LoginLogo />
    </Logo>
    <Email index={3} placeholder="Email" />
    <Password index={2} />
    <Email keyname="phone" label="Phone:" type="tel" index={1} placeholder="Phone number">
      <div>xx</div>
    </Email>
    <Email keyname="xx" visible={false} index={1}>
      <div>xx2</div>
    </Email>
    <Footer>
      Forgot <a href="#">Username / Password?</a>
    </Footer>
  </LoginPage>
);

export default Demo;

Modify Color Style

import React from 'react';
import Login from '@reect-login-page/page4';

const css = {
  '--login-bg': '#f3f2f2',
  '--login-color': '#333',
  '--login-logo': '#fff',
  '--login-inner-bg': '#fff',
  '--login-banner-bg': '#fbfbfb',
  '--login-input': '#333',
  '--login-input-icon': '#dddddd',
  '--login-input-bg': 'transparent',
  '--login-input-border': 'rgba(0, 0, 0, 0.13)',
  '--login-input-placeholder': '#999999',
  '--login-btn': '#fff',
  '--login-btn-bg': '#b08bf8',
  '--login-btn-bg-focus': '#b08bf8',
  '--login-btn-bg-hover': '#b08bf8',
  '--login-btn-bg-active': '#b08bf8',
};

const Demo = () => <Login style={{ height: 380, ...css }} />;

export default Demo;

Use css variables to override default color values

.login-page2 {
  --login-bg: #363e47;
  --login-color: #333;
  --login-inner-bg: #d9d9d9;
  --login-logo: #333;
  --login-btn: #fff;
  --login-btn-linear-gradient: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  --login-input: #333;
  --login-input-border: #adadad;
  --login-input-placeholder: #5d5d5d;
  --login-input-border-valid: red;
  --login-input-linear-gradient: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  --login-input-border-bg: #6a7dfe;
}

Custom CSS style overrides

.login-page2 section button:focus {
  box-shadow: 0 0 0 2px rgba(0, 142, 240, 0.26);
}
.login-page2 section button:hover {
  background-color: #0070bd;
}
.login-page2 section button:active {
  background-color: #00528a;
}

Light & Dark Theme

[data-color-mode*='dark'] .login-page4,
.login-page4 {
  --login-bg: #363e47;
  --login-color: #333;
  --login-inner-bg: #d9d9d9;
  --login-logo: #333;
  --login-btn: #fff;
  --login-btn-linear-gradient: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  --login-input: #333;
  --login-input-border: #adadad;
  --login-input-placeholder: #5d5d5d;
  --login-input-border-valid: red;
  --login-input-linear-gradient: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  --login-input-border-bg: #6a7dfe;
}
[data-color-mode*='light'] .login-page4 {
  --login-bg: #f2f2f2;
  --login-color: #333;
  --login-inner-bg: #fff;
  --login-logo: #333;
  --login-btn: #fff;
  --login-btn-linear-gradient: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  --login-input: #333;
  --login-input-border: #adadad;
  --login-input-placeholder: #5d5d5d;
  --login-input-border-valid: red;
  --login-input-linear-gradient: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  --login-input-border-bg: #6a7dfe;
}

API

Components be provided to modify control properties and perform other related functions.

import Login from '@reect-login-page/page4';
// buttons
import { Reset, Submit } from '@reect-login-page/page4';
// blocks
import { Logo, Title, Footer } from '@reect-login-page/page4';
// fields
import { Email, Password } from '@reect-login-page/page4';

// Basic Components
import { Button } from '@reect-login-page/page4';
// or
import { Button } from 'react-login-page';

<Login>
  <Password index={2} />
</Login>

// Define the order of `Password` controls
<Password index={2} />

// Hiding the `Password` control
<Password visible={false} />

// Add new input control
<Email rename="phone" label="Phone:" type="tel" index={1} placeholder="Phone number">
  <div>xx</div>
</Email>

// Add content after the button
<Footer>
  Forgot <a href="#">Username / Password?</a>
</Footer>

// Modify logo image
<Logo>⚛️</Logo>

Use dot notation components.

import Login from '@reect-login-page/page4';

<Login>
  <Login.Password index={2} />
</Login>

// Define the order of `Password` controls
<Login.Password index={2} />

// Hiding the `Password` control
<Login.Password visible={false} />

// Add content after the button
<Login.Footer>
  Forgot <a href="#">Username / Password?</a>
</Login.Footer>

// Modify logo image
<Login.Logo>⚛️</Login.Logo>

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.