import * as React from 'react';
import { TextBox, PaymentSection, PaymentForm } from '@nova-hf/ui';
import Wrapper from 'components/app-layout/Wrapper';

interface IPasswordProps {
  color?: string;
}

export default class Password extends React.Component<IPasswordProps> {
  forms: any = [];
  render() {
    return (
      <Wrapper>
        <PaymentSection smallerTitle fullWidth noSpacingTop title="Breyta lykilorði">
          <PaymentForm>
            <TextBox label="Núverandi lykilorð" />
            <TextBox label="Nýtt lykilorð" />
          </PaymentForm>
        </PaymentSection>
      </Wrapper>
    );
  }
}
