The main server, and probably only repository in this org.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
937 B

import React from "react";
import {connect} from "react-redux";
import {Card, CardBody, CardHeader, CardTitle, Col, Form, FormGroup, Input, Label} from "reactstrap";
function LoginForm(props) {
return (
<Card>
<CardHeader>
<CardTitle>Innlogging</CardTitle>
</CardHeader>
<CardBody>
<Form>
<FormGroup row>
<Label sm={2} for="input-username">Brukernavn</Label>
<Col sm={10}>
<Input type="text" name="email" id="input-username"/>
</Col>
</FormGroup>
<FormGroup row>
<Label sm={2} for="input-password">Passord</Label>
<Col sm={10}>
<Input type="password" name="email" id="input-password"/>
</Col>
</FormGroup>
</Form>
</CardBody>
</Card>
);
}
const mapStateToProps = (state) => ({});
export default connect(mapStateToProps)(LoginForm);