mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
WIP Frontend structure & authentication.
This commit is contained in:
29
client/src/containers/Authentication/ResetPassword.js
Normal file
29
client/src/containers/Authentication/ResetPassword.js
Normal file
@@ -0,0 +1,29 @@
|
||||
import * as React from "react";
|
||||
import { Link } from 'react-router-dom';
|
||||
import {Button, InputGroup} from "@blueprintjs/core";
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
export default function Login() {
|
||||
return (
|
||||
<div class="login-page">
|
||||
<form>
|
||||
<InputGroup
|
||||
leftIcon="user"
|
||||
placeholder={<FormattedMessage id="email_or_phone_number" />}
|
||||
large={true}
|
||||
className="input-group--email"
|
||||
/>
|
||||
|
||||
<Button
|
||||
fill={true}
|
||||
large={true}>
|
||||
<FormattedMessage id="reset_password" />
|
||||
</Button>
|
||||
</form>
|
||||
|
||||
<div class="authentication-page__footer">
|
||||
<Link to="/login"><FormattedMessage id="login" /></Link>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user