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