Refactor/Formattingandstuff #60
2 changed files with 16 additions and 18 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue