All Projects → Zetoff → accounts-material-ui

Zetoff / accounts-material-ui

Licence: other
Material-ui integration with std:accounts-ui

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to accounts-material-ui

MeteorCandy-meteor-admin-dashboard-devtool
The Fast, Secure and Scalable Admin Panel / Dashboard for Meteor.js
Stars: ✭ 50 (+194.12%)
Mutual labels:  meteor, accounts, users
Future Web
Starter kit to create PWA with cutting edge technologies
Stars: ✭ 38 (+123.53%)
Mutual labels:  meteor, material-ui
React-Hue
🎨 A Material color palette tool based on Meteor, React, Material UI.
Stars: ✭ 45 (+164.71%)
Mutual labels:  meteor, material-ui
massh-enum
OpenSSH 2.3 up to 7.4 Mass Username Enumeration (CVE-2018-15473).
Stars: ✭ 136 (+700%)
Mutual labels:  accounts, users
FancyAboutPage-Android
Fancy About Page is a simple and lightweight library that helps you to create cool and beautiful about page for your apps without writing dozens of lines of code. It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate.
Stars: ✭ 79 (+364.71%)
Mutual labels:  material-ui
sample-ui-react
Material-UI+ React.js + Redux [ Pug / Scss / Babel ]
Stars: ✭ 15 (-11.76%)
Mutual labels:  material-ui
awrora-starter
Landing page template built with one of most popular javascript library Vue.JS, Vuetify (Material Design) and Nuxt.JS with SSR.
Stars: ✭ 38 (+123.53%)
Mutual labels:  material-ui
chatty
A React single-page-application alternative client for the shacknews chatty.
Stars: ✭ 27 (+58.82%)
Mutual labels:  material-ui
catchflicks
🎬 Kitchen sink project for learning android concepts 🎬
Stars: ✭ 12 (-29.41%)
Mutual labels:  material-ui
Facebook-Messenger
This is a Facebook Messenger clone.You can comminicate to other at realtime.Used ReactJS, Material UI, Firebase, Firestore Database
Stars: ✭ 18 (+5.88%)
Mutual labels:  material-ui
meteor-getting-started
Урок для хабры. Разработка первого метеор приложения.
Stars: ✭ 36 (+111.76%)
Mutual labels:  meteor
core
🔥 Antares Core Implemenation. Most important project layer, this is the heart for your app. ACL, notifiter, console, geoip, areas, utils and many more...
Stars: ✭ 24 (+41.18%)
Mutual labels:  users
svelteify
📲 Customizable and dependencies-less Material components with Svelte
Stars: ✭ 43 (+152.94%)
Mutual labels:  material-ui
meteor-publication-collector
Test a Meteor publication by collecting its output.
Stars: ✭ 32 (+88.24%)
Mutual labels:  meteor
meteor-autoform-materialize
DEPRECATED - Meteor AutoForm Materialize templates
Stars: ✭ 48 (+182.35%)
Mutual labels:  meteor
react-mui-pro-starter
Mix of Create React App and Material UI with set of reusable components and utilities to build professional React Applications faster.
Stars: ✭ 14 (-17.65%)
Mutual labels:  material-ui
sekai-viewer
Web Database Viewer of Project Sekai
Stars: ✭ 122 (+617.65%)
Mutual labels:  material-ui
Atomic-Periodic-Table.Android
Atomic - Periodic Table
Stars: ✭ 33 (+94.12%)
Mutual labels:  material-ui
material-ui-settings-panel
A settings component in material ui style inspired by google admin console and google inbox.
Stars: ✭ 15 (-11.76%)
Mutual labels:  material-ui
meteor-spacebars-tohtml
Meteor package to ease rendering spacebars to html
Stars: ✭ 35 (+105.88%)
Mutual labels:  meteor

React Accounts UI for using Material-UI

Demo Here

React Accounts UI for using Material-UI

Based on and extends std:accounts-ui

https://github.com/studiointeract/accounts-ui

Installation

meteor add zetoff:accounts-material-ui

Dependencies

In addition to React this package also depends on material-ui. So make sure it is installed:

meteor npm install -S material-ui

Configuration

We support the standard configuration in the account-ui package. But have extended with some new options.

Accounts.ui.config(options)

Example setup (Meteor 1.3)

meteor add accounts-password
meteor add zetoff:accounts-material-ui meteor npm install -S material-ui

import React from 'react';
import { Accounts } from 'meteor/std:accounts-ui';

Accounts.ui.config({
  passwordSignupFields: 'NO_PASSWORD',
  loginPath: '/',
});

if (Meteor.isClient) {
  ReactDOM.render(<Accounts.ui.LoginForm />, document.body)
}

Example setup using FlowRouter (Meteor 1.3)

meteor add accounts-password
meteor add zetoff:accounts-material-ui meteor npm install -S material-ui

import { FlowRouter } from 'meteor/kadira:flow-router-ssr';
import { Accounts } from 'meteor/std:accounts-ui';
import React from 'react';

Accounts.ui.config({
  passwordSignupFields: 'NO_PASSWORD',
  loginPath: '/login',
  onSignedInHook: () => FlowRouter.go('/'),
  onSignedOutHook: () => FlowRouter.go('/')
});

FlowRouter.route("/login", {
  action(params) {
    mount(MainLayout, {
      content: <Accounts.ui.LoginForm />
    });
  }
});

Credits

Made by Zetoff

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].