mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-07 01:51:36 -04:00
imported current state of the mockup into the public repo
Co-authored-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
commit
93ce059577
161 changed files with 17419 additions and 0 deletions
30
src/components/landing/pages/login/auth/via-ldap.tsx
Normal file
30
src/components/landing/pages/login/auth/via-ldap.tsx
Normal file
|
@ -0,0 +1,30 @@
|
|||
import React, {Fragment} from "react";
|
||||
import {Trans} from "react-i18next";
|
||||
import {Button, Form} from "react-bootstrap";
|
||||
|
||||
const ViaLdap: React.FC = () => {
|
||||
return (
|
||||
<Fragment>
|
||||
<h5 className="center">
|
||||
<Trans i18nKey="signInVia" values={{service: "LDAP"}}/>
|
||||
</h5>
|
||||
<Form>
|
||||
<Form.Group controlId="formBasicUsername">
|
||||
<Form.Control type="text" size="sm" placeholder="Username" />
|
||||
</Form.Group>
|
||||
|
||||
<Form.Group controlId="formBasicPassword">
|
||||
<Form.Control type="password" size="sm" placeholder="Password" />
|
||||
</Form.Group>
|
||||
<Button
|
||||
size="sm"
|
||||
variant="primary"
|
||||
>
|
||||
<Trans i18nKey="signIn"/>
|
||||
</Button>
|
||||
</Form>
|
||||
</Fragment>
|
||||
)
|
||||
};
|
||||
|
||||
export { ViaLdap }
|
Loading…
Add table
Add a link
Reference in a new issue