Formatting some things

This commit is contained in:
cami 2021-06-27 00:29:29 +02:00
parent 73a0c2bdd4
commit d8ce50a897
2 changed files with 16 additions and 18 deletions

View file

@ -133,6 +133,7 @@ def protected():
"""
return {'message': f'protected endpoint (allowed user {flask_praetorian.current_user().username})'}
@app.route('/api/register', methods=['POST'])
def register():
req = flask.request.get_json(force=True)

View file

@ -19,28 +19,25 @@ function Navbar() {
}
};
const isLoggedIn = useAuth();
/* Shows the button after resizing the screen */
useEffect(() => {
showButton();
}, []);
window.addEventListener("resize", showButton);
return (
<>
{" "}
<nav className="navbar">
{" "}
<div className="navbar-container">
{" "}
<Link to="/" className="navbar-logo" onClick={closeMobileMenu}>
{" "}
Bachelorarbeit Marco Camenzind{" "}
</Link>{" "}
</Link>
<div className="menu-icon" onClick={handleClick}>
{" "}
<i className={click ? "fas fa-times" : "fas fa-bars"} />{" "}
</div>{" "}
<i className={click ? "fas fa-times" : "fas fa-bars"} />
</div>
<ul className={click ? "nav-menu active" : "nav-menu"}>
{" "}
<li className="nav-item">
<Link to="/" className="nav-links" onClick={closeMobileMenu}>
Startseite