blob: ca00f27f5194f6bc7f9c94360ce07c1ce03ab46b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import React from "react";
import {Labelled} from "./shared";
import {Input} from "../Form/Input";
export const Password = (props) => <Labelled label="password">
<Input
name="pass"
placeholder="password"
type="password"
autoComplete="off"
onChange={props.onChange}
value={props.value}
id={props.id} />
</Labelled>
|