-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zaida Le
authored and
Zaida Le
committed
Nov 18, 2024
1 parent
59c5416
commit 41c19ce
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
```mermaid | ||
sequenceDiagram | ||
participant User | ||
participant Database | ||
participant loginHTML | ||
participant signupHTML | ||
participant Profiles | ||
participant EventsForYou | ||
participant HomePage | ||
User->>loginHTML: Loads Webpage (login.html) | ||
loginHTML->>signupHTML: Loads register webpage (signup.html) | ||
User->>signupHTML: User fills out required input fields to register a new account | ||
signupHTML->>loginHTML: Prompts user to login page (login.html) after registering a new account | ||
loginHTML->>Database: Search through database to validate login credentials | ||
loginHTML->>HomePage: Once credentials are validated, user is brought to HomePage (index.html) | ||
loginHTML->>Profiles: User information is gathered to access profile page (profile.html) | ||
loginHTML->>EventsForYou: User information is gathered to generate EventsForYou (index.html) | ||
User->>UI: Clicks on Event Card |