Default Form
<Card>
<Card.Header className="card-header primaryBg primaryBorder text-white">
Default Form
</Card.Header>
<Card.Body>
<Form>
<Form.Group controlId="formBasicEmail">
<Form.Label className="font-weight-bold">Email address</Form.Label>
<Form.Control type="email" placeholder="Enter email" />
</Form.Group>
<Form.Group controlId="formBasicPassword">
<Form.Label className="font-weight-bold">Password</Form.Label>
<Form.Control type="password" placeholder="Password" />
</Form.Group>
<Form.Group controlId="formBasicChecbox">
<Form.Check type="checkbox" label="Remember me" className="font-weight-bold"/>
</Form.Group>
<Button variant="primary" type="submit" className="bg-transparent text-dark sqr-btn">
Sign in
</Button>
</Form>
</Card.Body>
</Card>
Inline Underline Form
<Form className="form-inline form-underline">
<Form.Group controlId="formBasicName">
<Form.Label className="font-weight-bold pr-1">Name </Form.Label>
<Form.Control type="text" placeholder="Jane Doe" className="input-underlined"/>
</Form.Group>
<Form.Group controlId="formBasicEmail" className="pl-2">
<Form.Label className="font-weight-bold pr-1">Email </Form.Label>
<Form.Control type="email" placeholder="[email protected]" className="input-underlined" />
</Form.Group>
<Button variant="primary" type="submit" className="bg-transparent text-dark sqr-btn ml-2">
Sign in
</Button>
</Form>