This is the code that runs https://bandolier.learnjsthehardway.com/ for you to review. It uses the https://git.learnjsthehardway.com/learn-javascript-the-hard-way/bandolier-template to create the documentation for the project.
https://bandolier.learnjsthehardway.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
427 B
5 lines
427 B
The `Login` is both in `client/pages/Login.svelte` and also in `client/components/Login.svelte`. The
|
|
one in `pages` is more like this demo and simply uses the `component`. The reason for the split is
|
|
so you can prompt for a login with a `Modal` in situations where tearing the user away from what
|
|
they're viewing might be wrong. A good example of this is if people are watching a video but need
|
|
to log in to comment or chat.
|
|
|