Renaming and autoformatting
- renamed the react files to jsx - autoformat with vscode
This commit is contained in:
parent
e762032f00
commit
85e484bf0b
32 changed files with 127 additions and 129 deletions
|
@ -1,49 +0,0 @@
|
|||
import React from "react";
|
||||
import "../../App.css";
|
||||
import Footer from "../../Footer";
|
||||
|
||||
export default function Lizenzen() {
|
||||
return (
|
||||
<>
|
||||
<div className="sitePage license">
|
||||
<h1>Lizenzen und Bildnachweise</h1>
|
||||
<p>
|
||||
Nachfolgend sollen die verwendeten Bibliotheken inklusive der Lizenz
|
||||
aufgeführt werden. Neben den Bibliotheken sollen vorallem auch
|
||||
Bildnachweise notiert werden.
|
||||
</p>
|
||||
<h2>Verwendete Bibliotheken</h2>
|
||||
<h3>Frontend</h3>
|
||||
<ul>
|
||||
<li>
|
||||
ReactJS (MIT-Lizenz):{" "}
|
||||
<a href="https://github.com/facebook/react">
|
||||
https://github.com/facebook/react
|
||||
</a>{" "}
|
||||
</li>
|
||||
<li>Behametrics Web-Logger (MIT-Lizenz): <a href="https://gitlab.com/behametrics/logger-web">https://gitlab.com/behametrics/logger-web</a></li>
|
||||
<li>Fortawesome Icons (CC-BY-4.0): <a href="https://github.com/FortAwesome/Font-Awesome">https://github.com/FortAwesome/Font-Awesome</a></li>
|
||||
<li>React-Token-Auth (ISC-Lizenz): <a href="https://github.com/obabichev/react-token-auth">https://github.com/obabichev/react-token-auth</a></li>
|
||||
<li>react-router-dom (MIT-Lizenz)<a href="https://github.com/ReactTraining/react-router">https://github.com/ReactTraining/react-router</a></li>
|
||||
</ul>
|
||||
<h3>Backend</h3>
|
||||
<ul>
|
||||
<li>Flask (BSD-3-Lizenz): <a href="https://github.com/pallets/flask/">https://github.com/pallets/flask/</a></li>
|
||||
<li>flask-sqlalchemy (BSD-3-Lizenz): <a href="https://github.com/pallets/flask-sqlalchemy">https://github.com/pallets/flask-sqlalchemy</a></li>
|
||||
<li>flask-praetorian (MIT-Lizenz): <a href="https://github.com/dusktreader/flask-praetorian">https://github.com/dusktreader/flask-praetorian</a></li>
|
||||
<li>Flask-CORS (MIT-Lizenz): <a href="https://github.com/corydolphin/flask-cors">https://github.com/corydolphin/flask-cors</a></li>
|
||||
<li>Behametrics Serverimplementierung (MIT-Lizenz)<a href="https://gitlab.com/behametrics/server">https://gitlab.com/behametrics/server</a></li>
|
||||
</ul>
|
||||
<h2>Bildnachweise</h2>
|
||||
<ul className="bildnachweise">
|
||||
<li>
|
||||
Originalbild für die Startseite: <a href="https://pixabay.com/illustrations/virtual-identity-digital-identity-69996/">
|
||||
https://pixabay.com/illustrations/virtual-identity-digital-identity-69996/
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
95
frontend/src/components/pages/Lizenzen.jsx
Normal file
95
frontend/src/components/pages/Lizenzen.jsx
Normal file
|
@ -0,0 +1,95 @@
|
|||
import React from "react";
|
||||
import "../../App.css";
|
||||
import Footer from "../../Footer";
|
||||
|
||||
export default function Lizenzen() {
|
||||
return (
|
||||
<>
|
||||
<div className="sitePage license">
|
||||
<h1>Lizenzen und Bildnachweise</h1>
|
||||
<p>
|
||||
Nachfolgend sollen die verwendeten Bibliotheken inklusive der Lizenz
|
||||
aufgeführt werden. Neben den Bibliotheken sollen vorallem auch
|
||||
Bildnachweise notiert werden.
|
||||
</p>
|
||||
<h2>Verwendete Bibliotheken</h2>
|
||||
<h3>Frontend</h3>
|
||||
<ul>
|
||||
<li>
|
||||
ReactJS (MIT-Lizenz):{" "}
|
||||
<a href="https://github.com/facebook/react">
|
||||
https://github.com/facebook/react
|
||||
</a>{" "}
|
||||
</li>
|
||||
<li>
|
||||
Behametrics Web-Logger (MIT-Lizenz):{" "}
|
||||
<a href="https://gitlab.com/behametrics/logger-web">
|
||||
https://gitlab.com/behametrics/logger-web
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
Fortawesome Icons (CC-BY-4.0):{" "}
|
||||
<a href="https://github.com/FortAwesome/Font-Awesome">
|
||||
https://github.com/FortAwesome/Font-Awesome
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
React-Token-Auth (ISC-Lizenz):{" "}
|
||||
<a href="https://github.com/obabichev/react-token-auth">
|
||||
https://github.com/obabichev/react-token-auth
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
react-router-dom (MIT-Lizenz)
|
||||
<a href="https://github.com/ReactTraining/react-router">
|
||||
https://github.com/ReactTraining/react-router
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>Backend</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Flask (BSD-3-Lizenz):{" "}
|
||||
<a href="https://github.com/pallets/flask/">
|
||||
https://github.com/pallets/flask/
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
flask-sqlalchemy (BSD-3-Lizenz):{" "}
|
||||
<a href="https://github.com/pallets/flask-sqlalchemy">
|
||||
https://github.com/pallets/flask-sqlalchemy
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
flask-praetorian (MIT-Lizenz):{" "}
|
||||
<a href="https://github.com/dusktreader/flask-praetorian">
|
||||
https://github.com/dusktreader/flask-praetorian
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
Flask-CORS (MIT-Lizenz):{" "}
|
||||
<a href="https://github.com/corydolphin/flask-cors">
|
||||
https://github.com/corydolphin/flask-cors
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
Behametrics Serverimplementierung (MIT-Lizenz)
|
||||
<a href="https://gitlab.com/behametrics/server">
|
||||
https://gitlab.com/behametrics/server
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Bildnachweise</h2>
|
||||
<ul className="bildnachweise">
|
||||
<li>
|
||||
Originalbild für die Startseite:{" "}
|
||||
<a href="https://pixabay.com/illustrations/virtual-identity-digital-identity-69996/">
|
||||
https://pixabay.com/illustrations/virtual-identity-digital-identity-69996/
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
|
@ -33,13 +33,11 @@ export default function Manual() {
|
|||
Studie.
|
||||
</p>
|
||||
<h2>War schon einmal hier</h2>
|
||||
<p>
|
||||
Wenn Sie schon einmal hier waren, gibt es zwei mögliche Zustände:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Sie sind noch eingeloggt</li>
|
||||
<li>Sie sind nicht mehr eingeloggt</li>
|
||||
</ul>
|
||||
<p>Wenn Sie schon einmal hier waren, gibt es zwei mögliche Zustände:</p>
|
||||
<ul>
|
||||
<li>Sie sind noch eingeloggt</li>
|
||||
<li>Sie sind nicht mehr eingeloggt</li>
|
||||
</ul>
|
||||
<p>
|
||||
Sofern Sie noch nicht eingeloggt sind, können Sie sich anmelden mit
|
||||
ihrem gewählten Benutzernamen und dem Passwort. Sie landen dann direkt
|
Loading…
Add table
Add a link
Reference in a new issue